mirror of https://github.com/nodejs/node.git
20 lines
377 B
JavaScript
20 lines
377 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var ch = require('child_process');
|
|
|
|
var SIZE = 100000;
|
|
var childGone = false;
|
|
|
|
var cp = ch.spawn('python', ['-c', 'print ' + SIZE + ' * "C"'], {
|
|
stdio: 'inherit'
|
|
});
|
|
|
|
cp.on('exit', function(code) {
|
|
childGone = true;
|
|
assert.equal(0, code);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(childGone);
|
|
});
|