From 2fe7413f0ea42aaff3110561a2c78effbba0dbc5 Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Fri, 19 Aug 2022 01:01:53 +0800 Subject: [PATCH] itest: increase test timeout to 120m We now update our test timeout from 60m to 120m because most of the tests would now take more than one hour to finish. --- 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 893185cd8..59e4d3152 100644 --- a/make/testing_flags.mk +++ b/make/testing_flags.mk @@ -81,11 +81,11 @@ LOG_TAGS := nolog endif # If a timeout was requested, construct initialize the proper flag for the go -# test command. If not, we set 60m (up from the default 10m). +# test command. If not, we set 120m (up from the default 10m). ifneq ($(timeout),) TEST_FLAGS += -test.timeout=$(timeout) else -TEST_FLAGS += -test.timeout=60m +TEST_FLAGS += -test.timeout=120m endif GOLIST := go list -tags="$(DEV_TAGS)" -deps $(PKG)/... | grep '$(PKG)'| grep -v '/vendor/'