Pārlūkot izejas kodu

Check for OS Type and skip within the test

Premature check for OS type means that the test
will never even get to run on other OS types. This
will cause it to be always flagged as a failure on
such OS types.

Signed-off-by: vikrambirsingh <vikrambir.singh@docker.com>
vikrambirsingh 5 gadi atpakaļ
vecāks
revīzija
25c5a55261
1 mainītis faili ar 0 papildinājumiem un 3 dzēšanām
  1. 0 3
      integration/plugin/volumes/main_test.go

+ 0 - 3
integration/plugin/volumes/main_test.go

@@ -19,9 +19,6 @@ func TestMain(m *testing.M) {
 		fmt.Println(err)
 		fmt.Println(err)
 		os.Exit(1)
 		os.Exit(1)
 	}
 	}
-	if testEnv.OSType != "linux" {
-		os.Exit(0)
-	}
 	err = environment.EnsureFrozenImagesLinux(testEnv)
 	err = environment.EnsureFrozenImagesLinux(testEnv)
 	if err != nil {
 	if err != nil {
 		fmt.Println(err)
 		fmt.Println(err)