summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-01-01 14:53:27 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-01-01 14:53:27 (GMT)
commit4e8f5492c5c74b3cb3a8448fa8bf482d4e8a3d74 (patch)
tree56321ccf4ae51f2dae4c665e2db415ca43f4bd88
parent6a8f7b741cba1aa96b38d1a58a5db72dfb4d2d5d (diff)
downloadcpython-4e8f5492c5c74b3cb3a8448fa8bf482d4e8a3d74.zip
cpython-4e8f5492c5c74b3cb3a8448fa8bf482d4e8a3d74.tar.gz
cpython-4e8f5492c5c74b3cb3a8448fa8bf482d4e8a3d74.tar.bz2
Revert last change -- test works on HPUX again after Martin's checkin
to 'properly configure the slave terminal' See SF patch # 656590 for the details.
-rw-r--r--Lib/test/test_pty.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py
index 02165bc..eb833f0 100644
--- a/Lib/test/test_pty.py
+++ b/Lib/test/test_pty.py
@@ -25,9 +25,8 @@ except OSError:
# " An optional feature could not be imported " ... ?
raise TestSkipped, "Pseudo-terminals (seemingly) not functional."
-# this hangs on HPUX 11, comment out for now until we can determine cause
-##if not os.isatty(slave_fd):
-## raise TestFailed, "slave_fd is not a tty"
+if not os.isatty(slave_fd):
+ raise TestFailed, "slave_fd is not a tty"
# IRIX apparently turns \n into \r\n. Allow that, but avoid allowing other
# differences (like extra whitespace, trailing garbage, etc.)