diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-11 17:40:56 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-11 17:40:56 (GMT) |
commit | 9887fd7a7947bc3e53375a749171213d232b2e5c (patch) | |
tree | a3812b92af693590f08c542c664cf6f6d3fac880 | |
parent | 613960bee8bbd0d08ca6d082ba7c2d47249a6289 (diff) | |
download | cpython-9887fd7a7947bc3e53375a749171213d232b2e5c.zip cpython-9887fd7a7947bc3e53375a749171213d232b2e5c.tar.gz cpython-9887fd7a7947bc3e53375a749171213d232b2e5c.tar.bz2 |
Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than
FreeBSD 8
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 3f99da4..d5d667a 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -956,6 +956,8 @@ class EventLoopTestsMixin: # select, poll and kqueue don't support character devices (PTY) on Mac OS X # older than 10.6 (Snow Leopard) @support.requires_mac_ver(10, 6) + # Issue #20495: The test hangs on FreeBSD 7.2 but pass on FreeBSD 9 + @support.requires_freebsd_version(8) def test_read_pty_output(self): proto = None |