Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Carranza <pcarranza@gmail.com>2016-12-10 23:51:38 +0300
committerPablo Carranza <pcarranza@gmail.com>2016-12-10 23:51:38 +0300
commita8edd1db481c111877b5326f353f744fa52a7c05 (patch)
treee489104c60c3fdceb49ebc972f0e7ba9caf30b32
parentd0a4b49a842c46b271129d049534bca6a5115745 (diff)
Add verbose mode to the testing
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6fb68adbe..08d99c8fb 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,8 @@ ${BUILD_DIR}/_build:
touch $@
test: ${BUILD_DIR}/_build
- cd ${BUILD_DIR}/_build/src/${PKG}/server && go test
- cd ${BUILD_DIR}/_build/src/${PKG}/client && go test
+ cd ${BUILD_DIR}/_build/src/${PKG}/server && go test -v
+ cd ${BUILD_DIR}/_build/src/${PKG}/client && go test -v
clean:
rm -rf ${BUILD_DIR}/_build