mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/5920 Refs: https://github.com/nodejs/node/issues/2148 Reviewed-By: Brian White <mscdex@mscdex.net>v4.x
Rich Trott
9 years ago
committed by
Myles Borins
1 changed files with 20 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
'use strict'; |
|||
// Refs: https://github.com/nodejs/node/issues/2148
|
|||
|
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
const execSync = require('child_process').execSync; |
|||
|
|||
const longLine = 'foo bar baz quux quuz aaa bbb ccc'.repeat(65536); |
|||
|
|||
if (process.argv[2] === 'child') { |
|||
process.on('exit', () => { |
|||
console.log(longLine); |
|||
}); |
|||
process.exit(); |
|||
} |
|||
|
|||
const cmd = `${process.execPath} ${__filename} child`; |
|||
const stdout = execSync(cmd).toString().trim(); |
|||
|
|||
assert.strictEqual(stdout, longLine); |
Loading…
Reference in new issue