@@ -53,9 +53,12 @@ if (process.argv[2] === 'child') {
|
53 | 53 | child.stdout.on('data', (d) => { outData = Buffer.concat([ outData, d ]); }); |
54 | 54 | |
55 | 55 | child.on('close', common.mustCall((code, signal) => { |
56 | | -if (signal) { |
57 | | -console.log(`Child closed with signal: ${signal}`); |
| 56 | +if ((common.isAIX || |
| 57 | +(common.isLinux && process.arch === 'x64')) && |
| 58 | +signal === 'SIGABRT') { |
| 59 | +// XXX: The child process could be aborted due to unknown reasons. Work around it. |
58 | 60 | } else { |
| 61 | +assert.strictEqual(signal, null); |
59 | 62 | assert.strictEqual(code, 1); |
60 | 63 | } |
61 | 64 | assert.match(outData.toString(), heartbeatMsg, |
|