From 293a8de93cede81dda34807e30f0fbc44139b8e9 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Thu, 21 Apr 2016 18:20:37 -0400 Subject: [PATCH] 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 extending the platform timeout for AIX. This commit does that. --- test/common.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/common.js b/test/common.js index 6fb357ba2586a2..48f8ea719c5c63 100644 --- a/test/common.js +++ b/test/common.js @@ -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;