aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElad <theman@elad.im>2019-01-18 20:22:05 +0800
committerAnton Evangelatov <anton.evangelatov@gmail.com>2019-01-18 20:22:05 +0800
commit632135ce4c1d8d3d9a36771aab4137260018e84b (patch)
treece0a0ad7f2a36464e386818bbafd4b83ee4332c6
parent257bfff316e4efb8952fbeb67c91f86af579cb0a (diff)
downloadgo-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.tar
go-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.tar.gz
go-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.tar.bz2
go-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.tar.lz
go-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.tar.xz
go-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.tar.zst
go-tangerine-632135ce4c1d8d3d9a36771aab4137260018e84b.zip
cmd/swarm/swarm-snapshot: disable tests on windows (#18478)
-rw-r--r--cmd/swarm/swarm-snapshot/create_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/swarm/swarm-snapshot/create_test.go b/cmd/swarm/swarm-snapshot/create_test.go
index dbd5b12cd..c9445168d 100644
--- a/cmd/swarm/swarm-snapshot/create_test.go
+++ b/cmd/swarm/swarm-snapshot/create_test.go
@@ -21,6 +21,7 @@ import (
"fmt"
"io/ioutil"
"os"
+ "runtime"
"sort"
"strconv"
"strings"
@@ -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