From 0408abc20e996f14aa525cddee153c3a58b662fb Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 1 May 2019 19:33:12 +0100 Subject: [PATCH] add -v to tests to debug #3154 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3cefc2625..dd95af7d7 100644 --- a/Makefile +++ b/Makefile @@ -54,10 +54,10 @@ test: rclone # Quick test quicktest: - RCLONE_CONFIG="/notfound" go test $(BUILDTAGS) $(GO_FILES) + RCLONE_CONFIG="/notfound" go test -v $(BUILDTAGS) $(GO_FILES) racequicktest: - RCLONE_CONFIG="/notfound" go test $(BUILDTAGS) -cpu=2 -race $(GO_FILES) + RCLONE_CONFIG="/notfound" go test -v $(BUILDTAGS) -cpu=2 -race $(GO_FILES) # Do source code quality checks check: rclone