X Tutup
The Wayback Machine - https://web.archive.org/web/20210813164505/https://github.com/nodejs/node/commit/098a4d6551
Skip to content
Permalink
Browse files
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>
  • Loading branch information
Trott authored and jasnell committed Apr 7, 2021
1 parent f9b63b8 commit 098a4d6551af51e43733818ba5ba7fd93f7dc6b5
Showing with 7 additions and 1 deletion.
  1. +7 −1 test/pummel/test-crypto-dh-keys.js
@@ -21,8 +21,14 @@

'use strict';
const common = require('../common');
if (!common.hasCrypto)
if (!common.hasCrypto) {
common.skip('node compiled without OpenSSL.');
}

if ((process.config.variables.arm_version === '6') ||
(process.config.variables.arm_version === '7')) {
common.skip('Too slow for armv6 and armv7 bots');
}

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

0 comments on commit 098a4d6

Please sign in to comment.
X Tutup