From e3bced182c5d155e95a288a49d8946ef8f6e06b0 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Thu, 17 Mar 2022 11:04:04 -0400 Subject: [PATCH] test: give slow tests more time on Rasberry PIs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 PR-URL: https://github.com/nodejs/node/pull/42380 Reviewed-By: Rich Trott Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca --- tools/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index f204004c7a63f1..9a7de5ed24d706 100755 --- a/tools/test.py +++ b/tools/test.py @@ -896,7 +896,7 @@ def GetTestStatus(self, context, sections, defs): 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 } }