skip MoveRestart conversion test on windows

parent 6787bc78
...@@ -7,11 +7,12 @@ import ( ...@@ -7,11 +7,12 @@ import (
"math/rand" "math/rand"
"os" "os"
"path/filepath" "path/filepath"
"runtime"
"testing" "testing"
"time" "time"
"github.com/ipfs/go-datastore" "github.com/ipfs/go-datastore"
"github.com/ipfs/go-ds-flatfs" flatfs "github.com/ipfs/go-ds-flatfs"
) )
func TestMove(t *testing.T) { func TestMove(t *testing.T) {
...@@ -57,6 +58,9 @@ func TestMove(t *testing.T) { ...@@ -57,6 +58,9 @@ func TestMove(t *testing.T) {
} }
func TestMoveRestart(t *testing.T) { func TestMoveRestart(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}
tempdir, cleanup := tempdir(t) tempdir, cleanup := tempdir(t)
defer cleanup() defer cleanup()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment