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
391 B

'use strict';
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);
});