0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/pummel/test-child-process-spawn-loop.js
Oleg Efimov 093dfaf801 GJSLint all tests, only 3 long lines left in test-url.js
test/simple/test-url.js:31:(0110) Line too long (82 characters).
test/simple/test-url.js:39:(0110) Line too long (85 characters).
test/simple/test-url.js:40:(0110) Line too long (92 characters).
2010-12-05 15:42:41 -08:00

38 lines
761 B
JavaScript

var common = require('../common');
var assert = require('assert');
var spawn = require('child_process').spawn;
var SIZE = 1000 * 1024;
var N = 40;
var finished = false;
function doSpawn(i) {
var child = spawn('python', ['-c', 'print ' + SIZE + ' * "C"']);
var count = 0;
child.stdout.setEncoding('ascii');
child.stdout.addListener('data', function(chunk) {
count += chunk.length;
});
child.stderr.addListener('data', function(chunk) {
console.log('stderr: ' + chunk);
});
child.addListener('exit', function() {
assert.equal(SIZE + 1, count); // + 1 for \n
if (i < N) {
doSpawn(i + 1);
} else {
finished = true;
}
});
}
doSpawn(0);
process.addListener('exit', function() {
assert.ok(finished);
});