From c30e2dc28c53664a4ad241a682355332af3371d2 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Sun, 1 Dec 2013 21:20:35 -0700 Subject: [PATCH] Remove "-v" from "go test" (since it's easy to add back via TESTFLAGS) --- hack/make/dyntest | 2 +- hack/make/test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/make/dyntest b/hack/make/dyntest index 756b038207..a4ab2e456b 100644 --- a/hack/make/dyntest +++ b/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 diff --git a/hack/make/test b/hack/make/test index 361f731d70..eab8c18c84 100644 --- a/hack/make/test +++ b/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