Browse code

Clean up the "go test" output from "make test" to be much more readable/scannable

Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)

Tianon Gravi authored on 2014/03/12 16:17:38
Showing 1 changed files
... ...
@@ -125,7 +125,7 @@ go_test_dir() {
125 125
 		testcover=( -cover -coverprofile "$coverprofile" $coverpkg )
126 126
 	fi
127 127
 	(
128
-		set -x
128
+		echo '+ go test' $TESTFLAGS "github.com/dotcloud/docker${dir#.}"
129 129
 		cd "$dir"
130 130
 		go test ${testcover[@]} -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS
131 131
 	)