summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-09-19 17:42:51 (GMT)
committerGitHub <noreply@github.com>2023-09-19 17:42:51 (GMT)
commit754519a9f8c2bb06d85ff9b3e9fe6f967ac46d5c (patch)
treec71faa4fa666b3ec320467eae6447724921ce368 /Misc
parent9df6712c122b621dc5a1053ff1eccf0debfb2148 (diff)
downloadcpython-754519a9f8c2bb06d85ff9b3e9fe6f967ac46d5c.zip
cpython-754519a9f8c2bb06d85ff9b3e9fe6f967ac46d5c.tar.gz
cpython-754519a9f8c2bb06d85ff9b3e9fe6f967ac46d5c.tar.bz2
gh-109580: Skip test_perf_profiler on ASAN build (#109584)
Skip test_perf_profiler if Python is built with ASAN, MSAN or UBSAN sanitizer. Python does crash randomly in this test on such build.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2023-09-19-19-08-22.gh-issue-109580.G02Zam.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-19-19-08-22.gh-issue-109580.G02Zam.rst b/Misc/NEWS.d/next/Tests/2023-09-19-19-08-22.gh-issue-109580.G02Zam.rst
new file mode 100644
index 0000000..b917cbf
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2023-09-19-19-08-22.gh-issue-109580.G02Zam.rst
@@ -0,0 +1,3 @@
+Skip ``test_perf_profiler`` if Python is built with ASAN, MSAN or UBSAN
+sanitizer. Python does crash randomly in this test on such build. Patch by
+Victor Stinner.