From aef809f5c860aaedd27cd946f8774a128f929889 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 1 Nov 2021 00:13:23 -0700 Subject: [PATCH] test,tools: increase pummel/benchmark test timeout from 4x to 6x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The win10-COMPILED_BY-vs2019 hosts in CI are very slow and timing out on certain tests in pummel and (previously) benchmark. Increase timeout from 4x to 6x. PR-URL: https://github.com/nodejs/node/pull/40684 Reviewed-By: Michaël Zasso Reviewed-By: Tobias Nießen Reviewed-By: Voltrex --- tools/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index 3663e0f6098c53..8ca1f58e9a1223 100755 --- a/tools/test.py +++ b/tools/test.py @@ -945,7 +945,7 @@ def GetVm(self, arch, mode): def GetTimeout(self, mode, section=''): timeout = self.timeout * TIMEOUT_SCALEFACTOR[ARCH_GUESS or 'ia32'][mode] if section == 'pummel' or section == 'benchmark': - timeout = timeout * 4 + timeout = timeout * 6 return timeout def RunTestCases(cases_to_run, progress, tasks, flaky_tests_mode):