mirror of
https://github.com/taigrr/bitcask
synced 2025-01-18 04:03:17 -08:00
Added test harness logic to skip some tests on Windows (#129)
This commit is contained in:
parent
cae49b3319
commit
45c81452c5
@ -8,6 +8,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"reflect"
|
||||
"runtime"
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
@ -50,6 +51,12 @@ func SortByteArrays(src [][]byte) [][]byte {
|
||||
return sorted
|
||||
}
|
||||
|
||||
func skipIfWindows(t *testing.T) {
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip("Skipping this test on Windows")
|
||||
}
|
||||
}
|
||||
|
||||
func TestAll(t *testing.T) {
|
||||
var (
|
||||
db *Bitcask
|
||||
@ -616,6 +623,10 @@ func TestStatsError(t *testing.T) {
|
||||
assert.Equal(stats.Datafiles, 0)
|
||||
assert.Equal(stats.Keys, 1)
|
||||
})
|
||||
})
|
||||
|
||||
t.Run("Test", func(t *testing.T) {
|
||||
skipIfWindows(t)
|
||||
|
||||
t.Run("FabricatedDestruction", func(t *testing.T) {
|
||||
// This would never happen in reality :D
|
||||
@ -997,6 +1008,8 @@ func TestMergeErrors(t *testing.T) {
|
||||
assert := assert.New(t)
|
||||
|
||||
t.Run("RemoveDatabaseDirectory", func(t *testing.T) {
|
||||
skipIfWindows(t)
|
||||
|
||||
testdir, err := ioutil.TempDir("", "bitcask")
|
||||
assert.NoError(err)
|
||||
defer os.RemoveAll(testdir)
|
||||
|
Loading…
x
Reference in New Issue
Block a user