Issue #22331: Skip test_interrupted_write_text() on FreeBSD older than 8.0

This commit is contained in:
Victor Stinner 2014-09-03 23:32:28 +02:00
parent c6a1c02cce
commit 6ab728612d

View file

@ -3298,6 +3298,8 @@ class SignalsTest(unittest.TestCase):
def test_interrupted_write_buffered(self):
self.check_interrupted_write(b"xy", b"xy", mode="wb")
# Issue #22331: The test hangs on FreeBSD 7.2
@support.requires_freebsd_version(8)
def test_interrupted_write_text(self):
self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii")