mirror of https://github.com/nodejs/node.git
21 lines
378 B
JavaScript
21 lines
378 B
JavaScript
'use strict';
|
|
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);
|
|
});
|