Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: update test failure output to include exit code and signal
  • Loading branch information
jennazee committed Oct 15, 2017
commit 37f42a54a3521e8ad5e2b8beef642de1f10622b7
8 changes: 4 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,15 @@ 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}`);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The line length exceeds 80 characters here. This has to be fixed but it can also be done while landing.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

}));
} else {
const net = require('net');
Expand Down