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.
26 lines
637 B
26 lines
637 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const spawn = require('child_process').spawn;
|
|
const sub = path.join(common.fixturesDir, 'print-chars.js');
|
|
|
|
const n = 500000;
|
|
|
|
const child = spawn(process.argv[0], [sub, n]);
|
|
|
|
let count = 0;
|
|
|
|
child.stderr.setEncoding('utf8');
|
|
child.stderr.on('data', common.fail);
|
|
|
|
child.stdout.setEncoding('utf8');
|
|
child.stdout.on('data', (data) => {
|
|
count += data.length;
|
|
});
|
|
|
|
child.on('close', common.mustCall((code, signal) => {
|
|
assert.strictEqual(code, 0);
|
|
assert.strictEqual(signal, null);
|
|
assert.strictEqual(n, count);
|
|
}));
|
|
|