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.
25 lines
656 B
25 lines
656 B
'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);
|
|
});
|
|
assert.doesNotThrow(function() {
|
|
process.kill(persistentPid);
|
|
});
|
|
});
|
|
|