diff options
author | Fantix King <fantix.king@gmail.com> | 2022-08-05 08:45:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 08:45:36 (GMT) |
commit | 3a9e1fda7ab30e04545d3eceea1f2ccd37fa1f15 (patch) | |
tree | f4817b62d0d5752ddcdfe27a9213d7fdde183a92 /Misc | |
parent | a525f2ada407d6677bf8ca708f104694de0525e4 (diff) | |
download | cpython-3a9e1fda7ab30e04545d3eceea1f2ccd37fa1f15.zip cpython-3a9e1fda7ab30e04545d3eceea1f2ccd37fa1f15.tar.gz cpython-3a9e1fda7ab30e04545d3eceea1f2ccd37fa1f15.tar.bz2 |
gh-95573: Reduce test data size in test_asyncio/test_ssl.py (GH-95668)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2022-08-05-09-57-43.gh-issue-95573.edMdQB.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2022-08-05-09-57-43.gh-issue-95573.edMdQB.rst b/Misc/NEWS.d/next/Tests/2022-08-05-09-57-43.gh-issue-95573.edMdQB.rst new file mode 100644 index 0000000..8580556 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2022-08-05-09-57-43.gh-issue-95573.edMdQB.rst @@ -0,0 +1,6 @@ +:source:`Lib/test/test_asyncio/test_ssl.py` exposed a bug in the macOS +kernel where intense concurrent load on non-blocking sockets occasionally +causes :const:`errno.ENOBUFS` ("No buffer space available") to be emitted. +FB11063974 filed with Apple, in the mean time as a workaround buffer size +used in tests on macOS is decreased to avoid intermittent failures. Patch +by Fantix King. |