diff options
author | Fedor Indutny <fedor@indutny.com> | 2015-03-05 11:04:00 -0500 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2015-03-05 13:38:22 -0500 |
commit | 3446ff417ba1e11d35d1661b8788eac5af029360 (patch) | |
tree | 9e48f3d4ddecc8a0e243406c6b826a10b7611626 /test/parallel/test-regress-GH-io-1068.js | |
parent | 9d2b89d06c14f8e250e290668507c9daa8ec97ca (diff) | |
download | node-new-3446ff417ba1e11d35d1661b8788eac5af029360.tar.gz |
tty: do not add `shutdown` method to handle
UV_TTY does not support `uv_shutdown()` so adding this method in
StreamBase will cause an `abort()` in C land.
Fix: https://github.com/iojs/io.js/issues/1068
PR-URL: https://github.com/iojs/io.js/pull/1073
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-regress-GH-io-1068.js')
-rw-r--r-- | test/parallel/test-regress-GH-io-1068.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/parallel/test-regress-GH-io-1068.js b/test/parallel/test-regress-GH-io-1068.js new file mode 100644 index 0000000000..e769e6b81a --- /dev/null +++ b/test/parallel/test-regress-GH-io-1068.js @@ -0,0 +1 @@ +process.stdin.emit('end'); |