mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
(Merge 3.4) Issue #22331: Skip test_interrupted_write_text() on FreeBSD older
than 8.0
This commit is contained in:
commit
a6b6bba5ed
1 changed files with 2 additions and 0 deletions
|
@ -3383,6 +3383,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")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue