From c7981daf092186cd52267c2209d3f4720e749db9 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 3 Apr 2021 21:14:41 -0700 Subject: [PATCH] test: skip test-hash-seed on armv6 and armv7 The test is too slow to run on the Raspberry Pi bots. (It takes over 900 seconds to run on Pi 3 bots and even more than that on Pi 2 bots.) Skip it on armv6 and armv7. Refs: https://github.com/nodejs/node/pull/34289 PR-URL: https://github.com/nodejs/node/pull/34289 Reviewed-By: Richard Lau --- test/pummel/test-hash-seed.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/pummel/test-hash-seed.js b/test/pummel/test-hash-seed.js index 30edca32f6f852..d63754cb56ed02 100644 --- a/test/pummel/test-hash-seed.js +++ b/test/pummel/test-hash-seed.js @@ -2,6 +2,11 @@ // Check that spawn child doesn't create duplicated entries const common = require('../common'); + +if ((process.config.variables.arm_version === '6') || + (process.config.variables.arm_version === '7')) + common.skip('Too slow for armv6 and armv7 bots'); + const kRepetitions = 2; const assert = require('assert'); const fixtures = require('../common/fixtures');