1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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)
This commit is contained in:
Tianon Gravi 2014-03-12 01:17:38 -06:00
parent f544ebd55a
commit e1c48fa560

View file

@ -125,7 +125,7 @@ go_test_dir() {
testcover=( -cover -coverprofile "$coverprofile" $coverpkg ) testcover=( -cover -coverprofile "$coverprofile" $coverpkg )
fi fi
( (
set -x echo '+ go test' $TESTFLAGS "github.com/dotcloud/docker${dir#.}"
cd "$dir" cd "$dir"
go test ${testcover[@]} -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS go test ${testcover[@]} -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS
) )