Skip to content

Commit

Permalink
cmd/swarm/swarm-snapshot: disable tests on windows (ethereum#18478)
Browse files Browse the repository at this point in the history
  • Loading branch information
acud authored and nonsense committed Jan 18, 2019
1 parent 257bfff commit 632135c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cmd/swarm/swarm-snapshot/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"fmt"
"io/ioutil"
"os"
"runtime"
"sort"
"strconv"
"strings"
Expand All @@ -33,6 +34,10 @@ import (
// It runs a few "create" commands with different flag values and loads generated
// snapshot files to validate their content.
func TestSnapshotCreate(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}

for _, v := range []struct {
name string
nodes int
Expand Down

0 comments on commit 632135c

Please sign in to comment.