From 6f72a528dc3cb58bdb56ef70072590abcb2f3583 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 12 Mar 2014 01:17:38 -0600 Subject: [PATCH] Clean up the "go test" output from "make test" to be much more readable/scannable Docker-DCO-1.1-Signed-off-by: Andrew Page (github: tianon) Upstream-commit: e1c48fa56007e1db028f7f83bfbf79c3d05feccd Component: engine --- components/engine/hack/make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/hack/make.sh b/components/engine/hack/make.sh index 63edca4d4c..d7f8aaeed2 100755 --- a/components/engine/hack/make.sh +++ b/components/engine/hack/make.sh @@ -125,7 +125,7 @@ go_test_dir() { testcover=( -cover -coverprofile "$coverprofile" $coverpkg ) fi ( - set -x + echo '+ go test' $TESTFLAGS "github.com/dotcloud/docker${dir#.}" cd "$dir" go test ${testcover[@]} -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS )