Skip to content

Commit 5550cff

Browse files
mhdawsonMyles Borins
authored and
Myles Borins
committed
test: increase the platform timeout for AIX
There have been failures on AIX due to the slower default loopback performance. So far I've resisted updating the global timeout but seeing another new failure in a newly added test I now think the right thing is to just extend the platform timeout for AIX. This commit does that. PR-URL: #6342 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent fb44f5c commit 5550cff

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/common.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,9 @@ exports.platformTimeout = function(ms) {
239239
if (process.config.target_defaults.default_configuration === 'Debug')
240240
ms = 2 * ms;
241241

242+
if (exports.isAix)
243+
return 2 * ms; // default localhost speed is slower on AIX
244+
242245
if (process.arch !== 'arm')
243246
return ms;
244247

0 commit comments

Comments
 (0)