Skip to content

Commit

Permalink
Increase test timeout for testWorkerFatalError
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Feb 9, 2023
1 parent d2c9ab2 commit d8d4118
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d8d4118

Please sign in to comment.