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.
27 lines
586 B
27 lines
586 B
require("../common");
|
|
var path = require('path');
|
|
var spawn = require('child_process').spawn;
|
|
var sub = path.join(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) {
|
|
puts("parent stderr: " + data);
|
|
assert.ok(false);
|
|
});
|
|
|
|
child.stderr.setEncoding('utf8');
|
|
child.stdout.addListener("data", function (data) {
|
|
count += data.length;
|
|
puts(count);
|
|
});
|
|
|
|
child.addListener("exit", function (data) {
|
|
assert.equal(n, count);
|
|
puts("okay");
|
|
});
|
|
|