Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-11-01 10:13:23 +0300
committerRich Trott <rtrott@gmail.com>2021-11-01 19:28:37 +0300
commit2883992a06b2f72913f30604163c5f383514f55b (patch)
tree031a5858bd1823aa3b1b773362fb539675994c14 /tools/test.py
parentcbcf86f23d266434e803d89353307580116380b1 (diff)
test,tools: increase pummel/benchmark test timeout from 4x to 6x
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 <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com>
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index 3663e0f6098..8ca1f58e9a1 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -945,7 +945,7 @@ class Context(object):
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):