summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-03-26 19:33:48 -0700
committerEvan Lucas <evanlucas@me.com>2016-03-31 18:11:58 -0500
commitc5c7ae8e14d77b5640487d8716e3037975c46037 (patch)
tree879decd906c740fd783eda65820221d87b8757ef
parent6113f6af45961d99ec15c7603f31ced50a0f196d (diff)
downloadnode-new-c5c7ae8e14d77b5640487d8716e3037975c46037.tar.gz
test: add known_issues test for GH-2148
PR-URL: https://github.com/nodejs/node/pull/5920 Refs: https://github.com/nodejs/node/issues/2148 Reviewed-By: Brian White <mscdex@mscdex.net>
-rw-r--r--test/known_issues/test-stdout-buffer-flush-on-exit.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/known_issues/test-stdout-buffer-flush-on-exit.js b/test/known_issues/test-stdout-buffer-flush-on-exit.js
new file mode 100644
index 0000000000..f4ea0b5e01
--- /dev/null
+++ b/test/known_issues/test-stdout-buffer-flush-on-exit.js
@@ -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);