-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
gh-109496: Skip test_capi.test_decref_freed_object() on ASAN #109573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Skip test_decref_freed_object() of test_capi.test_misc if Python is built with ASAN, MSAN or UBSAN sanitizers.
Strange. GHA Address sanitizer job passed on my PR #109539: job https://github.com/python/cpython/actions/runs/6224015278/job/16891268158.
But it fails on the ASAN buildbot: https://buildbot.python.org/all/#/builders/585/builds/4047 The GHA job and buildbot both use GCC. Buildbot:
GHA:
Buildbot and GHA compiler flags are different. |
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
…ythonGH-109573) Skip test_decref_freed_object() of test_capi.test_misc if Python is built with ASAN, MSAN or UBSAN sanitizers. (cherry picked from commit 0a31ff0) Co-authored-by: Victor Stinner <[email protected]>
GH-109578 is a backport of this pull request to the 3.12 branch. |
|
|
…ython#109573) Skip test_decref_freed_object() of test_capi.test_misc if Python is built with ASAN, MSAN or UBSAN sanitizers.
…H-109573) (#109578) Co-authored-by: Victor Stinner <[email protected]>
Skip test_decref_freed_object() of test_capi.test_misc if Python is built with ASAN, MSAN or UBSAN sanitizers.
Py_DECREF
twice does not result in error with debug build #109496