From 7cc5901171571d126a7284a1f966ebd12d091df2 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Tue, 27 Dec 2022 14:51:47 +0800 Subject: [PATCH] Extended the test timeout to 30m Signed-off-by: Benjamin Wang --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 40147e5..67e3390 100644 --- a/Makefile +++ b/Makefile @@ -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