summaryrefslogtreecommitdiff
path: root/Lib/test/test_pty.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_pty.py')
-rw-r--r--Lib/test/test_pty.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py
index a45be284a9..190d8d787a 100644
--- a/Lib/test/test_pty.py
+++ b/Lib/test/test_pty.py
@@ -17,7 +17,6 @@ import unittest
import struct
import tty
import fcntl
-import platform
import warnings
TEST_STRING_1 = b"I wish to buy a fish license.\n"
@@ -82,12 +81,6 @@ def expectedFailureIfStdinIsTTY(fun):
pass
return fun
-def expectedFailureOnBSD(fun):
- PLATFORM = platform.system()
- if PLATFORM.endswith("BSD") or PLATFORM == "Darwin":
- return unittest.expectedFailure(fun)
- return fun
-
def _get_term_winsz(fd):
s = struct.pack("HHHH", 0, 0, 0, 0)
return fcntl.ioctl(fd, _TIOCGWINSZ, s)
@@ -314,7 +307,6 @@ class PtyTest(unittest.TestCase):
os.close(master_fd)
- @expectedFailureOnBSD
def test_master_read(self):
debug("Calling pty.openpty()")
master_fd, slave_fd = pty.openpty()
@@ -324,10 +316,13 @@ class PtyTest(unittest.TestCase):
os.close(slave_fd)
debug("Reading from master_fd")
- with self.assertRaises(OSError):
- os.read(master_fd, 1)
+ try:
+ data = os.read(master_fd, 1)
+ except OSError: # Linux
+ data = b""
os.close(master_fd)
+ self.assertEqual(data, b"")
class SmallPtyTests(unittest.TestCase):
"""These tests don't spawn children or hang."""