Skip to content

Commit

Permalink
test: update output to include exit code & signal
Browse files Browse the repository at this point in the history
PR-URL: nodejs#15945
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]
  • Loading branch information
jennazee authored and jasnell committed Oct 16, 2017
1 parent 9b3d6a0 commit da7d92e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions test/parallel/test-cluster-server-restart-none.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,23 @@ if (cluster.isMaster) {
worker1.on('listening', common.mustCall(() => {
const worker2 = cluster.fork();
worker2.on('exit', (code, signal) => {
assert.strictEqual(code, 0, 'worker2 did not exit normally');
assert.strictEqual(signal, null, 'worker2 did not exit normally');
assert.strictEqual(code, 0,
'worker2 did not exit normally. ' +
`exited with code ${code}`);
assert.strictEqual(signal, null,
'worker2 did not exit normally. ' +
`exited with signal ${signal}`);
worker1.disconnect();
});
}));

worker1.on('exit', common.mustCall((code, signal) => {
assert.strictEqual(code, 0, 'worker1 did not exit normally');
assert.strictEqual(signal, null, 'worker1 did not exit normally');
assert.strictEqual(code, 0,
'worker1 did not exit normally. ' +
`exited with code ${code}`);
assert.strictEqual(signal, null,
'worker1 did not exit normally. ' +
`exited with signal ${signal}`);
}));
} else {
const net = require('net');
Expand Down

0 comments on commit da7d92e

Please sign in to comment.