test: verify IPC messages are emitted on next tick
The test in this commit runs correctly if IPC messages are properly consumed and emitted. Otherwise, the test times out. Fixes: https://github.com/nodejs/node/issues/6561 PR-URL: https://github.com/nodejs/node/pull/6909 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
d59917b2a3
commit
dd21bd9f01
23
test/parallel/test-cluster-ipc-throw.js
Normal file
23
test/parallel/test-cluster-ipc-throw.js
Normal file
@ -0,0 +1,23 @@
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
const http = require('http');
|
||||
const cluster = require('cluster');
|
||||
|
||||
cluster.schedulingPolicy = cluster.SCHED_RR;
|
||||
|
||||
const server = http.createServer();
|
||||
|
||||
if (cluster.isMaster) {
|
||||
server.listen(common.PORT);
|
||||
const worker = cluster.fork();
|
||||
worker.on('exit', common.mustCall(() => {
|
||||
server.close();
|
||||
}));
|
||||
} else {
|
||||
process.on('uncaughtException', common.mustCall((e) => {}));
|
||||
server.listen(common.PORT);
|
||||
server.on('error', common.mustCall((e) => {
|
||||
cluster.worker.disconnect();
|
||||
throw e;
|
||||
}));
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user