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: https://github.com/nodejs/node/pull/6342 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
f1294f5bfd
commit
75e073f2b2
@ -245,6 +245,9 @@ exports.platformTimeout = function(ms) {
|
||||
if (process.config.target_defaults.default_configuration === 'Debug')
|
||||
ms = 2 * ms;
|
||||
|
||||
if (exports.isAix)
|
||||
return 2 * ms; // default localhost speed is slower on AIX
|
||||
|
||||
if (process.arch !== 'arm')
|
||||
return ms;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user