summaryrefslogtreecommitdiff
path: root/test/pummel/test-crypto-dh-hash.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-06-26 08:40:27 -0700
committerMichaƫl Zasso <targos@protonmail.com>2021-07-11 09:46:21 +0200
commit1f31e3c774ff41269e670ec9ff7664cf77fcb40b (patch)
treefc898a4a6a5e273b46eb4e7a79dfdd9e5e37805d /test/pummel/test-crypto-dh-hash.js
parentd486d0117c97395c3dc723835d88e3a0b245ffb7 (diff)
downloadnode-new-1f31e3c774ff41269e670ec9ff7664cf77fcb40b.tar.gz
test: remove checks for armv6
We no longer have armv6 in our regular CI. Remove checks. PR-URL: https://github.com/nodejs/node/pull/39162 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'test/pummel/test-crypto-dh-hash.js')
-rw-r--r--test/pummel/test-crypto-dh-hash.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/pummel/test-crypto-dh-hash.js b/test/pummel/test-crypto-dh-hash.js
index 5b7002ce7f..a5932eb764 100644
--- a/test/pummel/test-crypto-dh-hash.js
+++ b/test/pummel/test-crypto-dh-hash.js
@@ -26,9 +26,8 @@ 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');
+if (process.config.variables.arm_version === '7') {
+ common.skip('Too slow for armv7 bots');
}
const assert = require('assert');