From e4cd1b887105f0efadf9d122b01bfeaa681fed9b Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Thu, 16 Apr 2020 17:04:54 -0500 Subject: [PATCH] Add -v flag to test-race --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e0b639060..74e850ed7 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ test: # Run test suite with race flag test-race: case $$(go version) in *go1.14*) NOCHECKPTR="-gcflags=all=-d=checkptr=0";; *) NOCHECKPTR="";; esac ; \ - go test ./... -tags='$(BUILD_TAGS)' $(TESTFLAGS) -race $$NOCHECKPTR -timeout 30m + go test ./... -tags='$(BUILD_TAGS)' $(TESTFLAGS) -race $$NOCHECKPTR -timeout 30m -v bench: go test ./... -bench=. -run=NoneZ -timeout=127m $(TESTFLAGS)