Bläddra i källkod

Revert "enable race detector for scenario test"

This reverts commit 180c269c791b721c5842e2e6c3ca54694703ae4a.
Darien Raymond 7 år sedan
förälder
incheckning
8c7fcad414
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      testing/scenarios/common_regular.go

+ 1 - 1
testing/scenarios/common_regular.go

@@ -16,7 +16,7 @@ func BuildV2Ray() error {
 	}
 
 	fmt.Printf("Building V2Ray into path (%s)\n", testBinaryPath)
-	cmd := exec.Command("go", "build", "-race", "-o="+testBinaryPath, GetSourcePath())
+	cmd := exec.Command("go", "build", "-o="+testBinaryPath, GetSourcePath())
 	return cmd.Run()
 }