diff --git a/Makefile b/Makefile index c75cb08cb..8f5e589af 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ default: check test # general build-product folder, cleaned as part of `make clean` BUILD := .build -TEST_TIMEOUT := 5m +TEST_TIMEOUT := 10m TEST_ARG ?= -race -v -timeout $(TEST_TIMEOUT) INTEG_TEST_ROOT := ./test diff --git a/test/integration_test.go b/test/integration_test.go index bf0d4756d..2f3f3ed84 100644 --- a/test/integration_test.go +++ b/test/integration_test.go @@ -2321,7 +2321,7 @@ func (ts *IntegrationTestSuite) testWorkerFatalError(useWorkerRun bool) { var callbackErr, runErr error for callbackErr == nil || (useWorkerRun && runErr == nil) { select { - case <-time.After(10 * time.Second): + case <-time.After(130 * time.Second): ts.Fail("timeout") case callbackErr = <-callbackErrCh: case runErr = <-runErrCh: