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.
14 lines
374 B
14 lines
374 B
12 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var fork = require('child_process').fork;
|
||
|
|
||
|
var expected = Array(1e5).join('ßßßß');
|
||
|
if (process.argv[2] === 'child') {
|
||
|
process.send(expected);
|
||
|
} else {
|
||
|
var child = fork(process.argv[1], ['child']);
|
||
|
child.on('message', common.mustCall(function(actual) {
|
||
|
assert.equal(actual, expected);
|
||
|
}));
|
||
|
}
|