summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-12-31 18:05:15 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-12-31 18:05:15 (GMT)
commit64aa5f6982da690a35d2c52e4ae4b9452737265f (patch)
tree332bca93667bf82536af49409f8518c9cbd222d8
parent085ce5a77a6b84e990eb80929db1036e37717dcc (diff)
downloadcpython-64aa5f6982da690a35d2c52e4ae4b9452737265f.zip
cpython-64aa5f6982da690a35d2c52e4ae4b9452737265f.tar.gz
cpython-64aa5f6982da690a35d2c52e4ae4b9452737265f.tar.bz2
Remove bogus test; the master is not a terminal on Solaris and HP-UX.
-rw-r--r--Lib/test/test_openpty.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py
index 858c9ea..a8b8550 100644
--- a/Lib/test/test_openpty.py
+++ b/Lib/test/test_openpty.py
@@ -12,8 +12,6 @@ try:
except AttributeError:
raise TestSkipped, "No openpty() available."
-if not os.isatty(master):
- raise TestFailed, "Master-end of pty is not a terminal."
if not os.isatty(slave):
raise TestFailed, "Slave-end of pty is not a terminal."