diff --git a/sstable/reader_test.go b/sstable/reader_test.go index 792eca8fe1..018c195256 100644 --- a/sstable/reader_test.go +++ b/sstable/reader_test.go @@ -13,7 +13,6 @@ import ( "os" "path" "path/filepath" - "runtime" "strconv" "strings" "testing" @@ -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) { diff --git a/sstable/unsafe_test.go b/sstable/unsafe_test.go index 7c7b49e5af..13e26d8193 100644 --- a/sstable/unsafe_test.go +++ b/sstable/unsafe_test.go @@ -8,7 +8,6 @@ import ( "encoding/binary" "fmt" "io" - "runtime" "testing" "time" "unsafe" @@ -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)