Skip to content

Commit

Permalink
Increase timeout for fuzz tests to 20 minutes (hashicorp#367)
Browse files Browse the repository at this point in the history
On my 2016 MacBook Pro, 500s (8.33... minutes) is not enough, but 20
minutes usually is.
  • Loading branch information
catsby authored and briankassouf committed Oct 3, 2019
1 parent 9c6bd3e commit 7d1d8f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ ci.integ: ci.test
INTEG_TESTS=yes gotestsum --format=short-verbose --junitfile $(TEST_RESULTS_DIR)/gotestsum-report-integ.xml -- -timeout=25s -run=Integ -tags batchtest .

fuzz:
go test $(TESTARGS) -timeout=500s ./fuzzy
go test $(TESTARGS) -timeout=500s -tags batchtest ./fuzzy
go test $(TESTARGS) -timeout=20m ./fuzzy
go test $(TESTARGS) -timeout=20m -tags batchtest ./fuzzy

deps:
go get -t -d -v ./...
Expand Down

0 comments on commit 7d1d8f1

Please sign in to comment.