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:
authorMichael Dawson <mdawson@devrus.com>2022-03-17 18:04:04 +0300
committerMichael Dawson <mdawson@devrus.com>2022-03-18 23:02:13 +0300
commit6374f6b29ce8e98ba54f240ff68dbe622c497d61 (patch)
tree574199878ce93e6c863a6e7faef6fc7b6ec1ea77 /tools
parent57529b22c4a008ecdec1b9cae33c661dab4534a6 (diff)
test: give slow tests more time on Rasberry PIs
Refs: https://github.com/nodejs/node/issues/42379 A number of tests have been failing internmittently on the Rasberry PIs with timeouts since the update to OpenSSL 3.0. Give them more time. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/42380 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
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 f204004c7a6..9a7de5ed24d 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -896,7 +896,7 @@ class LiteralTestSuite(TestSuite):
TIMEOUT_SCALEFACTOR = {
- 'arm' : { 'debug' : 8, 'release' : 2 }, # The ARM buildbots are slow.
+ 'arm' : { 'debug' : 8, 'release' : 3 }, # The ARM buildbots are slow.
'ia32' : { 'debug' : 4, 'release' : 1 },
'ppc' : { 'debug' : 4, 'release' : 1 },
's390' : { 'debug' : 4, 'release' : 1 } }