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.
29 lines
527 B
29 lines
527 B
require("../common");
|
|
var path = require('path');
|
|
|
|
var sub = path.join(fixturesDir, 'print-chars.js');
|
|
|
|
n = 100000;
|
|
|
|
var child = process.createChildProcess(process.argv[0], [sub, n]);
|
|
|
|
var count = 0;
|
|
|
|
child.addListener("error", function (data){
|
|
if (data) {
|
|
puts("parent stderr: " + data);
|
|
assert.ok(false);
|
|
}
|
|
});
|
|
|
|
child.addListener("output", function (data){
|
|
if (data) {
|
|
count += data.length;
|
|
puts(count);
|
|
}
|
|
});
|
|
|
|
child.addListener("exit", function (data) {
|
|
assert.equal(n, count);
|
|
puts("okay");
|
|
});
|
|
|