From 460a5025d0c74cf4f7c7d7ff2d510e01c199dfef Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Thu, 24 May 2018 16:24:18 +0200 Subject: [PATCH] test: fix test failure on aix This makes sure there is enough stack space on different systems. PR-URL: https://github.com/nodejs/node/pull/20940 Reviewed-By: Gireesh Punathil Reviewed-By: Rich Trott Reviewed-By: Anna Henningsen Reviewed-By: Daniel Bevenius --- test/parallel/test-async-wrap-pop-id-during-load.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-async-wrap-pop-id-during-load.js b/test/parallel/test-async-wrap-pop-id-during-load.js index d9fffd397f6003..ff3f637b87c270 100644 --- a/test/parallel/test-async-wrap-pop-id-during-load.js +++ b/test/parallel/test-async-wrap-pop-id-during-load.js @@ -15,7 +15,7 @@ const { spawnSync } = require('child_process'); const ret = spawnSync( process.execPath, - ['--stack_size=50', __filename, 'async'] + ['--stack_size=75', __filename, 'async'] ); assert.strictEqual(ret.status, 0, `EXIT CODE: ${ret.status}, STDERR:\n${ret.stderr}`);