summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-09-29 12:41:33 (GMT)
committerGitHub <noreply@github.com>2023-09-29 12:41:33 (GMT)
commit86e76ab8af9a5018acbcdcbb6285678175b1bd8a (patch)
tree210b859099cd8a4701d417c71e426dbf23b80e2e /Misc
parent743e3572ee940a6cf88fd518e5f4a447905ba5eb (diff)
downloadcpython-86e76ab8af9a5018acbcdcbb6285678175b1bd8a.zip
cpython-86e76ab8af9a5018acbcdcbb6285678175b1bd8a.tar.gz
cpython-86e76ab8af9a5018acbcdcbb6285678175b1bd8a.tar.bz2
gh-110031: Skip test_threading fork tests if ASAN (#110100)
Skip test_threading tests using thread+fork if Python is built with Address Sanitizer (ASAN).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2023-09-29-14-11-30.gh-issue-110031.fQnFnc.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-29-14-11-30.gh-issue-110031.fQnFnc.rst b/Misc/NEWS.d/next/Tests/2023-09-29-14-11-30.gh-issue-110031.fQnFnc.rst
new file mode 100644
index 0000000..a8a163c
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2023-09-29-14-11-30.gh-issue-110031.fQnFnc.rst
@@ -0,0 +1,2 @@
+Skip test_threading tests using thread+fork if Python is built with Address
+Sanitizer (ASAN). Patch by Victor Stinner.