diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-19 17:42:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 17:42:51 (GMT) |
commit | 754519a9f8c2bb06d85ff9b3e9fe6f967ac46d5c (patch) | |
tree | c71faa4fa666b3ec320467eae6447724921ce368 /Misc | |
parent | 9df6712c122b621dc5a1053ff1eccf0debfb2148 (diff) | |
download | cpython-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.rst | 3 |
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. |