From 95738351f56347fbcf30f0f88e2058b8811568ca Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Sat, 22 Oct 2022 13:10:37 +0800 Subject: [PATCH] test: increase itest timeout to be 180m --- make/testing_flags.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/testing_flags.mk b/make/testing_flags.mk index d17ae58a6..f35a779a7 100644 --- a/make/testing_flags.mk +++ b/make/testing_flags.mk @@ -80,11 +80,11 @@ LOG_TAGS := nolog endif # If a timeout was requested, construct initialize the proper flag for the go -# test command. If not, we set 120m (up from the default 10m). +# test command. If not, we set 180m (up from the default 10m). ifneq ($(timeout),) TEST_FLAGS += -test.timeout=$(timeout) else -TEST_FLAGS += -test.timeout=120m +TEST_FLAGS += -test.timeout=180m endif GOLIST := go list -tags="$(DEV_TAGS)" -deps $(PKG)/... | grep '$(PKG)'| grep -v '/vendor/'