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.
20 lines
344 B
20 lines
344 B
14 years ago
|
|
||
|
var assert = require('assert');
|
||
|
var spawn = require('child_process').spawn;
|
||
|
|
||
|
var cat = spawn('cat');
|
||
|
var called;
|
||
|
|
||
|
process.kill(cat.pid, 0);
|
||
|
|
||
|
cat.stdout.on('data', function(){
|
||
|
called = true;
|
||
|
process.kill(cat.pid, 'SIGKILL');
|
||
|
});
|
||
|
|
||
|
// EPIPE when null sig fails
|
||
|
cat.stdin.write('test');
|
||
|
|
||
|
process.on('exit', function(){
|
||
|
assert.ok(called);
|
||
|
});
|