mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
test: skip some pummel tests on slower machines
Skipped the longest-running pummel tests on the Raspberry Pi devices in CI. Refs: https://github.com/nodejs/node/pull/34289#issuecomment-823354459 PR-URL: https://github.com/nodejs/node/pull/38394 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
This commit is contained in:
@@ -21,8 +21,15 @@
|
||||
|
||||
'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');
|
||||
|
||||
@@ -21,8 +21,15 @@
|
||||
|
||||
'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');
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
|
||||
if (!common.hasCrypto) {
|
||||
common.skip('node compiled without OpenSSL.');
|
||||
}
|
||||
|
||||
@@ -21,8 +21,15 @@
|
||||
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
if (!common.hasCrypto)
|
||||
|
||||
if (!common.hasCrypto) {
|
||||
common.skip('missing crypto');
|
||||
}
|
||||
|
||||
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');
|
||||
|
||||
@@ -20,7 +20,12 @@
|
||||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
'use strict';
|
||||
require('../common');
|
||||
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');
|
||||
}
|
||||
|
||||
let complete = 0;
|
||||
|
||||
|
||||
@@ -1,7 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
const common = require('../common');
|
||||
if (!common.hasCrypto) common.skip('missing crypto');
|
||||
|
||||
if (!common.hasCrypto) {
|
||||
common.skip('missing crypto');
|
||||
}
|
||||
|
||||
if ((process.config.variables.arm_version === '6') ||
|
||||
(process.config.variables.arm_version === '7')) {
|
||||
common.skip('Too slow for armv6 and armv7 bots');
|
||||
}
|
||||
|
||||
common.requireNoPackageJSONAbove();
|
||||
|
||||
const { debuglog } = require('util');
|
||||
|
||||
Reference in New Issue
Block a user