소스 검색

cmd/swarm/swarm-snapshot: disable tests on windows (#18478)

Elad 6 년 전
부모
커밋
632135ce4c
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      cmd/swarm/swarm-snapshot/create_test.go

+ 5 - 0
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