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
377 B
20 lines
377 B
13 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
13 years ago
|
var ch = require('child_process');
|
||
13 years ago
|
|
||
13 years ago
|
var SIZE = 100000;
|
||
13 years ago
|
var childGone = false;
|
||
|
|
||
13 years ago
|
var cp = ch.spawn('python', ['-c', 'print ' + SIZE + ' * "C"'], {
|
||
11 years ago
|
stdio: 'inherit'
|
||
13 years ago
|
});
|
||
|
|
||
13 years ago
|
cp.on('exit', function(code) {
|
||
13 years ago
|
childGone = true;
|
||
|
assert.equal(0, code);
|
||
|
});
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert.ok(childGone);
|
||
|
});
|