Add -v flag to test-race

This commit is contained in:
Cody Soyland 2020-04-16 17:04:54 -05:00
parent a00e93f699
commit e4cd1b8871

View file

@ -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)