Browse Source

test: remove "-a" GO_BUILD_FLAGS

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 7 years ago
parent
commit
7ed4803fb0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test

+ 2 - 2
test

@@ -621,8 +621,8 @@ function build_cov_pass {
 # fail fast on static tests
 function build_pass {
 	echo "Checking build..."
-	GO_BUILD_FLAGS="-a -v" etcd_build
-	GO_BUILD_FLAGS="-a -v" tools_build
+	GO_BUILD_FLAGS="-v" etcd_build
+	GO_BUILD_FLAGS="-v" tools_build
 }
 
 for pass in $PASSES; do