mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
88d2e699d8
PR-URL: https://github.com/nodejs/node/pull/12992 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Luca Maraschi <luca.maraschi@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
28 lines
710 B
JavaScript
28 lines
710 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const cluster = require('cluster');
|
|
const assert = require('assert');
|
|
|
|
if (cluster.isMaster) {
|
|
const worker = cluster.fork();
|
|
assert.ok(
|
|
!worker.isDead(),
|
|
'isDead() should return false right after the worker has been created.');
|
|
|
|
worker.on('exit', function() {
|
|
assert.ok(worker.isDead(),
|
|
'After an event has been emitted, isDead should return true');
|
|
});
|
|
|
|
worker.on('message', function(msg) {
|
|
if (msg === 'readyToDie') {
|
|
worker.kill();
|
|
}
|
|
});
|
|
|
|
} else if (cluster.isWorker) {
|
|
assert.ok(!cluster.worker.isDead(),
|
|
'isDead() should return false when called from within a worker');
|
|
process.send('readyToDie');
|
|
}
|