mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
615 B
27 lines
615 B
'use strict';
|
|
|
|
// Test should fail in Node.js 5.4.1 and pass in later versions.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
|
|
if (cluster.isMaster) {
|
|
cluster.on('exit', (worker, code) => {
|
|
assert.strictEqual(code, 0, 'worker exited with error');
|
|
});
|
|
|
|
return cluster.fork();
|
|
}
|
|
|
|
var eventFired = false;
|
|
|
|
cluster.worker.disconnect();
|
|
|
|
process.nextTick(common.mustCall(() => {
|
|
assert.strictEqual(eventFired, false, 'disconnect event should wait for ack');
|
|
}));
|
|
|
|
cluster.worker.on('disconnect', common.mustCall(() => {
|
|
eventFired = true;
|
|
}));
|
|
|