mirror of https://github.com/lukechilds/node.git
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.
28 lines
646 B
28 lines
646 B
common = require("../common");
|
|
assert = common.assert
|
|
var path = require('path');
|
|
var spawn = require('child_process').spawn;
|
|
var sub = path.join(common.fixturesDir, 'print-chars.js');
|
|
|
|
n = 500000;
|
|
|
|
var child = spawn(process.argv[0], [sub, n]);
|
|
|
|
var count = 0;
|
|
|
|
child.stderr.setEncoding('utf8');
|
|
child.stderr.addListener("data", function (data) {
|
|
console.log("parent stderr: " + data);
|
|
assert.ok(false);
|
|
});
|
|
|
|
child.stderr.setEncoding('utf8');
|
|
child.stdout.addListener("data", function (data) {
|
|
count += data.length;
|
|
console.log(count);
|
|
});
|
|
|
|
child.addListener("exit", function (data) {
|
|
assert.equal(n, count);
|
|
console.log("okay");
|
|
});
|
|
|