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
path: root/tools
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2022-09-12 00:41:14 +0300
committerJuan José Arboleda <soyjuanarbol@gmail.com>2022-10-11 22:45:30 +0300
commit18e1766346891f2b95b3f372f166a416a90519ab (patch)
tree5edf5164de63cf7d7cc923728a64eb3de0160b15 /tools
parent4ebb3ef50830b96052c849f38de1c411b4ecf171 (diff)
tools: increase timeout of running WPT
We run all WPT from one subset in the same process using workers. As the number of the tests grow, it can take longer to run some of the subsets, but it's still overall faster than running them in different processes. This patch increases the timeout for WPT to prevent the test from failing because it takes longer to run (even though it would still complete at some point). Refs: https://github.com/nodejs/reliability/issues/371 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> PR-URL: https://github.com/nodejs/node/pull/44574 Backport-PR-URL: https://github.com/nodejs/node/pull/44872
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index 4619df3a49d..788d68734fe 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -957,7 +957,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' or section == 'wpt':
+ if section == 'pummel' or section == 'benchmark':
timeout = timeout * 6
# We run all WPT from one subset in the same process using workers.
# As the number of the tests grow, it can take longer to run some of the