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.
 
 
 
 
 
 

14 lines
399 B

'use strict';
const common = require('../common');
const assert = require('assert');
const fork = require('child_process').fork;
const expected = Array(1e5).join('ßßßß');
if (process.argv[2] === 'child') {
process.send(expected);
} else {
const child = fork(process.argv[1], ['child']);
child.on('message', common.mustCall((actual) => {
assert.strictEqual(actual, expected);
}));
}