The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
19 lines
377 B
JavaScript
19 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);
|
|
});
|