diff --git a/test/common.js b/test/common.js index 3f940789d796b6..adf4247706f4cb 100644 --- a/test/common.js +++ b/test/common.js @@ -243,10 +243,15 @@ exports.platformTimeout = function(ms) { if (process.arch !== 'arm') return ms; - if (process.config.variables.arm_version === '6') + const armv = process.config.variables.arm_version; + + if (armv === '6') return 7 * ms; // ARMv6 - return 2 * ms; // ARMv7 and up. + if (armv === '7') + return 2 * ms; // ARMv7 + + return ms; // ARMv8+ }; var knownGlobals = [setTimeout,