Skip to content

Commit 098a4d6

Browse files
Trottjasnell
authored andcommitted
test: skip test-crypto-dh-keys on armv6 and armv7
The test is too slow to run on the Raspberry Pi bots. (It takes over 500 seconds to run on Pi 3 bots and over 900 seconds on Pi 2 bots.) Skip it on armv6 and armv7. Refs: #34289 PR-URL: #38076 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent f9b63b8 commit 098a4d6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/pummel/test-crypto-dh-keys.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,14 @@
2121

2222
'use strict';
2323
const common = require('../common');
24-
if (!common.hasCrypto)
24+
if (!common.hasCrypto) {
2525
common.skip('node compiled without OpenSSL.');
26+
}
27+
28+
if ((process.config.variables.arm_version === '6') ||
29+
(process.config.variables.arm_version === '7')) {
30+
common.skip('Too slow for armv6 and armv7 bots');
31+
}
2632

2733
const assert = require('assert');
2834
const crypto = require('crypto');

0 commit comments

Comments
 (0)