From 8a1dabb3ba9f04218162d3a741f253b9d1e213df Mon Sep 17 00:00:00 2001 From: Jason Aten Date: Mon, 20 Jul 2020 17:09:32 -0400 Subject: [PATCH] 60m timeout on race --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 94399afaf..566ddaf53 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ test: # Run test suite with race flag test-race: - go test ./... -tags='$(BUILD_TAGS)' $(TESTFLAGS) -race $(NOCHECKPTR) -timeout 30m -v + go test ./... -tags='$(BUILD_TAGS)' $(TESTFLAGS) -race $(NOCHECKPTR) -timeout 60m -v bench: go test ./... -bench=. -run=NoneZ -timeout=127m $(TESTFLAGS)