Skip to content

Commit

Permalink
Revert "sstable: skip two known test flakes on windows"
Browse files Browse the repository at this point in the history
This reverts commit 65ff304.

Touches #1897.
  • Loading branch information
nicktrav committed Jan 12, 2023
1 parent 7893328 commit dac60ce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions sstable/reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import (
"os"
"path"
"path/filepath"
"runtime"
"strconv"
"strings"
"testing"
Expand Down Expand Up @@ -638,9 +637,6 @@ func TestBytesIterated(t *testing.T) {
testBytesIteratedWithCompression(t, SnappyCompression, 1, blockSizes, []uint64{1e5, 1e5, 1e5, 1e5, 1e5})
})
t.Run("Uncompressed", func(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("See #1897.")
}
testBytesIteratedWithCompression(t, NoCompression, 0, blockSizes, []uint64{1e5, 1e5, 1e5, 1e5, 1e5})
})
t.Run("Zstd", func(t *testing.T) {
Expand Down
4 changes: 0 additions & 4 deletions sstable/unsafe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"encoding/binary"
"fmt"
"io"
"runtime"
"testing"
"time"
"unsafe"
Expand All @@ -18,9 +17,6 @@ import (
)

func TestGetBytes(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("See #1897.")
}
const size = (1 << 31) - 1
block := make([]byte, size)
data := getBytes(unsafe.Pointer(&block[0]), size)
Expand Down

0 comments on commit dac60ce

Please sign in to comment.