Skip to content

Commit 3a4f38a

Browse files
acuddshulyak
authored andcommitted
cmd/swarm/swarm-snapshot: disable tests on windows (ethereum#18478)
(cherry picked from commit 632135c)
1 parent 32fe76a commit 3a4f38a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cmd/swarm/swarm-snapshot/create_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
"fmt"
2222
"io/ioutil"
2323
"os"
24+
"runtime"
2425
"sort"
2526
"strconv"
2627
"strings"
@@ -33,6 +34,10 @@ import (
3334
// It runs a few "create" commands with different flag values and loads generated
3435
// snapshot files to validate their content.
3536
func TestSnapshotCreate(t *testing.T) {
37+
if runtime.GOOS == "windows" {
38+
t.Skip()
39+
}
40+
3641
for _, v := range []struct {
3742
name string
3843
nodes int

0 commit comments

Comments
 (0)