From fb7a5745c2a35832b453efb089979f70b2ea819f Mon Sep 17 00:00:00 2001 From: Sven Dowideit Date: Thu, 23 Mar 2017 05:40:14 +0000 Subject: [PATCH] verbose reports the name of the test Signed-off-by: Sven Dowideit --- scripts/integration-test | 2 +- scripts/test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/integration-test b/scripts/integration-test index d58c851f..3c5b2c83 100755 --- a/scripts/integration-test +++ b/scripts/integration-test @@ -18,4 +18,4 @@ if [ "$RUNTEST" != "" ]; then RUNTEST="-check.f ${RUNTEST}" fi -go test -timeout 9999m $RUNTEST +go test -v -timeout 9999m $RUNTEST diff --git a/scripts/test b/scripts/test index a620a05b..e360a109 100755 --- a/scripts/test +++ b/scripts/test @@ -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}