Skip to content

Commit

Permalink
test: skip test-hash-seed on armv6 and armv7
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Trott authored and targos committed May 1, 2021
1 parent 424c8e1 commit c7981da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/pummel/test-hash-seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit c7981da

Please sign in to comment.