summaryrefslogtreecommitdiff
path: root/test/pseudo-tty/pseudo-tty.status
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2017-10-15 22:40:00 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2017-11-15 12:18:58 +0100
commit9c1b18a59f2514e7bccbd07108b5f1f4e6f7c05e (patch)
treedbd2f587cf62a72c09f5966b8110510eeef8742e /test/pseudo-tty/pseudo-tty.status
parent6c76140a7a61d0030af5e869b4c0e0b038460b05 (diff)
downloadandroid-node-v8-9c1b18a59f2514e7bccbd07108b5f1f4e6f7c05e.tar.gz
android-node-v8-9c1b18a59f2514e7bccbd07108b5f1f4e6f7c05e.tar.bz2
android-node-v8-9c1b18a59f2514e7bccbd07108b5f1f4e6f7c05e.zip
tty: fix 'resize' event regression
It's not wholly clear what commit introduced the regression but between v8.4.0 and v8.5.0 the 'resize' event stopped getting emitted when the tty was resized. The SIGWINCH event listener apparently was being installed before the support code for `process.on('SIGWINCH', ...)` was. Fix that by moving said support code to real early in the bootstrap process. This commit also seems to fix a Windows-only "write EINVAL" error for reasons even less well-understood... Fixes: https://github.com/nodejs/node/issues/16141 Fixes: https://github.com/nodejs/node/issues/16194 PR-URL: https://github.com/nodejs/node/pull/16225 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Diffstat (limited to 'test/pseudo-tty/pseudo-tty.status')
-rw-r--r--test/pseudo-tty/pseudo-tty.status5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/pseudo-tty/pseudo-tty.status b/test/pseudo-tty/pseudo-tty.status
index 13279019b6..5c8114692d 100644
--- a/test/pseudo-tty/pseudo-tty.status
+++ b/test/pseudo-tty/pseudo-tty.status
@@ -3,3 +3,8 @@ prefix pseudo-tty
[$system==aix]
# being investigated under https://github.com/nodejs/node/issues/9728
test-tty-wrap : FAIL, PASS
+
+[$system==solaris]
+# https://github.com/nodejs/node/pull/16225 - `ioctl(fd, TIOCGWINSZ)` seems
+# to fail with EINVAL on SmartOS when `fd` is a pty from python's pty module.
+test-tty-stdout-resize : FAIL, PASS