Browse code

Remove "-v" from "go test" (since it's easy to add back via TESTFLAGS)

Tianon Gravi authored on 2013/12/02 13:20:35
Showing 2 changed files
... ...
@@ -34,7 +34,7 @@ bundle_test() {
34 34
 				
35 35
 				# Run the tests with the optional $TESTFLAGS.
36 36
 				export TEST_DOCKERINIT_PATH=$DEST/../dynbinary/dockerinit-$VERSION
37
-				go test -v -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS
37
+				go test -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS
38 38
 			); then
39 39
 				TESTS_FAILED+=("$test_dir")
40 40
 				sleep 1 # give it a second, so observers watching can take note
... ...
@@ -27,7 +27,7 @@ bundle_test() {
27 27
 				go test -i -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS
28 28
 				
29 29
 				# Run the tests with the optional $TESTFLAGS.
30
-				go test -v -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS $TESTFLAGS
30
+				go test -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS $TESTFLAGS
31 31
 			); then
32 32
 				TESTS_FAILED+=("$test_dir")
33 33
 				sleep 1 # give it a second, so observers watching can take note