diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-06 23:58:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 23:58:03 (GMT) |
commit | a52a3509770f29f940cda9307704908949912276 (patch) | |
tree | afa301d81a96413dea950cc75ca2f3275ca9073c /Misc/NEWS.d | |
parent | 60a9eea3f56c002356998f5532b3ad870a1ffa8e (diff) | |
download | cpython-a52a3509770f29f940cda9307704908949912276.zip cpython-a52a3509770f29f940cda9307704908949912276.tar.gz cpython-a52a3509770f29f940cda9307704908949912276.tar.bz2 |
gh-109015: Add test.support.socket_helper.tcp_blackhole() (#109016)
Skip test_asyncio, test_imaplib and test_socket tests if FreeBSD TCP
blackhole is enabled (net.inet.tcp.blackhole=2).
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2023-09-06-18-27-53.gh-issue-109015.1dS1AQ.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-06-18-27-53.gh-issue-109015.1dS1AQ.rst b/Misc/NEWS.d/next/Tests/2023-09-06-18-27-53.gh-issue-109015.1dS1AQ.rst new file mode 100644 index 0000000..cb641be --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2023-09-06-18-27-53.gh-issue-109015.1dS1AQ.rst @@ -0,0 +1,6 @@ +Fix test_asyncio, test_imaplib and test_socket tests on FreeBSD if the TCP +blackhole is enabled (``sysctl net.inet.tcp.blackhole``). Skip the few tests +which failed with ``ETIMEDOUT`` which such non standard configuration. +Currently, the `FreeBSD GCP image enables TCP and UDP blackhole +<https://reviews.freebsd.org/D41751>`_ (``sysctl net.inet.tcp.blackhole=2`` +and ``sysctl net.inet.udp.blackhole=1``). Patch by Victor Stinner. |