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-06-26 18:48:14 +0300
committerRich Trott <rtrott@gmail.com>2021-07-05 05:56:09 +0300
commit8703d22c4f04bd0f8b62580f8f2c919c27e8a2bf (patch)
tree6bf29dc20cee694032a035d373f3511bbefff9e9 /tools/test.py
parent62321267b05a8bb66915edc30587a421bcc82434 (diff)
tools: remove armv6 from test tools
CI no longer tests armv6. PR-URL: https://github.com/nodejs/node/pull/39162 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/test.py b/tools/test.py
index c3a7ff07e23..5d4f48700c4 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -896,8 +896,7 @@ class LiteralTestSuite(TestSuite):
TIMEOUT_SCALEFACTOR = {
- 'armv6' : { 'debug' : 12, 'release' : 3 }, # The ARM buildbots are slow.
- 'arm' : { 'debug' : 8, 'release' : 2 },
+ 'arm' : { 'debug' : 8, 'release' : 2 }, # The ARM buildbots are slow.
'ia32' : { 'debug' : 4, 'release' : 1 },
'ppc' : { 'debug' : 4, 'release' : 1 },
's390' : { 'debug' : 4, 'release' : 1 } }