mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 09:21:23 +00:00

PR-URL: https://github.com/nodejs/node/pull/9976 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
26 lines
679 B
JavaScript
26 lines
679 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
|
|
const spawn = require('child_process').spawn;
|
|
const childPath = path.join(common.fixturesDir,
|
|
'parent-process-nonpersistent.js');
|
|
let persistentPid = -1;
|
|
|
|
const child = spawn(process.execPath, [ childPath ]);
|
|
|
|
child.stdout.on('data', function(data) {
|
|
persistentPid = parseInt(data, 10);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.notStrictEqual(persistentPid, -1);
|
|
assert.throws(function() {
|
|
process.kill(child.pid);
|
|
}, /^Error: kill ESRCH$/);
|
|
assert.doesNotThrow(function() {
|
|
process.kill(persistentPid);
|
|
});
|
|
});
|