1
0
mirror of https://github.com/rancher/os.git synced 2025-07-31 14:41:14 +00:00

verbose reports the name of the test

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
Sven Dowideit 2017-03-23 05:40:14 +00:00
parent 693ca3179b
commit fb7a5745c2
2 changed files with 2 additions and 2 deletions

View File

@ -18,4 +18,4 @@ if [ "$RUNTEST" != "" ]; then
RUNTEST="-check.f ${RUNTEST}"
fi
go test -timeout 9999m $RUNTEST
go test -v -timeout 9999m $RUNTEST

View File

@ -11,4 +11,4 @@ PACKAGES=". $(find -name '*.go' | xargs -I{} dirname {} | cut -f2 -d/ | sort -u
if [ "$ARCH" = "amd64" ]; then
RACE="-race"
fi
go test $RACE -cover -tags=test ${PACKAGES}
go test $RACE -v -cover -tags=test ${PACKAGES}