Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 10 additions & 16 deletions test/parallel/test-process-kill-null.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,23 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.

'use strict';
require('../common');
const common = require('../common');
const assert = require('assert');
const spawn = require('child_process').spawn;

const cat = spawn('cat');
let called;
const child = common.isWindows ? spawn('cmd.exe') : spawn('cat');

assert.ok(process.kill(cat.pid, 0));
assert.ok(process.kill(child.pid, 0));

cat.on('exit', function() {
child.on('exit', common.mustCall(function() {
assert.throws(function() {
process.kill(cat.pid, 0);
process.kill(child.pid, 0);
}, Error);
});
}));

cat.stdout.on('data', function() {
called = true;
process.kill(cat.pid, 'SIGKILL');
});
child.stdout.on('data', common.mustCall(function() {
process.kill(child.pid, 'SIGKILL');
}));

// EPIPE when null sig fails
cat.stdin.write('test');

process.on('exit', function() {
assert.ok(called);
});
child.stdin.write('test');