diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-08 13:12:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 13:12:29 (GMT) |
commit | c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba (patch) | |
tree | 963d03aaec3dc64e4460fb7afbdde0a2dcadf54e /Lib/test/test_asyncio/test_events.py | |
parent | 579d78227627abf7edca0637de167e27946dc276 (diff) | |
download | cpython-c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba.zip cpython-c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba.tar.gz cpython-c9dc2bc0de367308fbac1ab01a3e9ccb8cd6f5ba.tar.bz2 |
[3.12] gh-109015: Add test.support.socket_helper.tcp_blackhole() (GH-109016) (#109041)
gh-109015: Add test.support.socket_helper.tcp_blackhole() (GH-109016)
Skip test_asyncio, test_imaplib and test_socket tests if FreeBSD TCP
blackhole is enabled (net.inet.tcp.blackhole=2).
(cherry picked from commit a52a3509770f29f940cda9307704908949912276)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index b906905..30cc8fd 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -671,6 +671,7 @@ class EventLoopTestsMixin: self.assertEqual(port, expected) tr.close() + @socket_helper.skip_if_tcp_blackhole def test_create_connection_local_addr_skip_different_family(self): # See https://github.com/python/cpython/issues/86508 port1 = socket_helper.find_unused_port() @@ -692,6 +693,7 @@ class EventLoopTestsMixin: with self.assertRaises(OSError): self.loop.run_until_complete(f) + @socket_helper.skip_if_tcp_blackhole def test_create_connection_local_addr_nomatch_family(self): # See https://github.com/python/cpython/issues/86508 port1 = socket_helper.find_unused_port() @@ -1271,6 +1273,7 @@ class EventLoopTestsMixin: server.close() + @socket_helper.skip_if_tcp_blackhole def test_server_close(self): f = self.loop.create_server(MyProto, '0.0.0.0', 0) server = self.loop.run_until_complete(f) |