Skip to content

Commit 5020891

Browse files
committed
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: #34289 PR-URL: #34289 Reviewed-By: Richard Lau <[email protected]>
1 parent 6a1986d commit 5020891

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: test/pummel/test-hash-seed.js

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
// Check that spawn child doesn't create duplicated entries
44
const common = require('../common');
5+
6+
if ((process.config.variables.arm_version === '6') ||
7+
(process.config.variables.arm_version === '7'))
8+
common.skip('Too slow for armv6 and armv7 bots');
9+
510
const kRepetitions = 2;
611
const assert = require('assert');
712
const fixtures = require('../common/fixtures');

0 commit comments

Comments
 (0)