Extended the test timeout to 30m

Signed-off-by: Benjamin Wang <wachao@vmware.com>
pull/366/head
Benjamin Wang 2022-12-27 14:51:47 +08:00
parent 99fe21f5e0
commit 7cc5901171
1 changed files with 2 additions and 2 deletions

View File

@ -14,12 +14,12 @@ lint:
golangci-lint run ./...
test:
TEST_FREELIST_TYPE=hashmap go test -timeout 20m -v -coverprofile cover.out -covermode atomic
TEST_FREELIST_TYPE=hashmap go test -timeout 30m -v -coverprofile cover.out -covermode atomic
TEST_FREELIST_TYPE=hashmap go test -v ./cmd/bbolt
@echo "array freelist test"
@TEST_FREELIST_TYPE=array go test -timeout 20m -v -coverprofile cover.out -covermode atomic
@TEST_FREELIST_TYPE=array go test -timeout 30m -v -coverprofile cover.out -covermode atomic
@TEST_FREELIST_TYPE=array go test -v ./cmd/bbolt
.PHONY: race fmt test lint