Skip to content

Commit

Permalink
fix(test): set benchmark test timeout to 30m
Browse files Browse the repository at this point in the history
Signed-off-by: Sunil Thaha <[email protected]>
  • Loading branch information
sthaha committed Dec 20, 2023
1 parent ac21a81 commit 80c1f45
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,11 @@ test: ginkgo-set tidy-vendor
test-verbose: ginkgo-set tidy-vendor
@echo TAGS=$(GO_BUILD_TAGS)
@echo GOENV=$(GOENV)
@$(GOENV) go test -tags $(GO_BUILD_TAGS) -covermode=atomic -coverprofile=coverage.out -v $$(go list ./... | grep pkg | grep -v bpfassets) --race --bench=. -cover --count=1 --vet=all
@$(GOENV) go test -tags $(GO_BUILD_TAGS) \
-timeout=30m \
-covermode=atomic -coverprofile=coverage.out \
-v $$(go list ./... | grep pkg | grep -v bpfassets) \
--race --bench=. -cover --count=1 --vet=all

test-mac-verbose: ginkgo-set
@echo TAGS=$(GO_BUILD_TAGS)
Expand Down

0 comments on commit 80c1f45

Please sign in to comment.