From 34198c75e5d6c8e36c5fe4422362ee8116ca531e 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. --- 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 4cf1ef472b6037..b01f27e0ee3ed2 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); const stderr = ret.stderr.toString('utf8', 0, 2048);