瀏覽代碼

Merge pull request #2981 from tianon/less-verbose-testing

Remove "-v" from "go test" (since it's easy to add back manually via TESTFLAGS)
Michael Crosby 11 年之前
父節點
當前提交
d7dd19d22e
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      hack/make/dyntest
  2. 1 1
      hack/make/test

+ 1 - 1
hack/make/dyntest

@@ -34,7 +34,7 @@ bundle_test() {
 				
 				# Run the tests with the optional $TESTFLAGS.
 				export TEST_DOCKERINIT_PATH=$DEST/../dynbinary/dockerinit-$VERSION
-				go test -v -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS
+				go test -ldflags "$LDFLAGS -X github.com/dotcloud/docker/utils.INITSHA1 \"$DOCKER_INITSHA1\"" $BUILDFLAGS $TESTFLAGS
 			); then
 				TESTS_FAILED+=("$test_dir")
 				sleep 1 # give it a second, so observers watching can take note

+ 1 - 1
hack/make/test

@@ -27,7 +27,7 @@ bundle_test() {
 				go test -i -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS
 				
 				# Run the tests with the optional $TESTFLAGS.
-				go test -v -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS $TESTFLAGS
+				go test -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS $TESTFLAGS
 			); then
 				TESTS_FAILED+=("$test_dir")
 				sleep 1 # give it a second, so observers watching can take note