https://github.com/python/cpython/commit/2248a9c153092b920ff68b0eee009c04dbe19f61
commit: 2248a9c153092b920ff68b0eee009c04dbe19f61
branch: main
author: Sam Gross <[email protected]>
committer: colesbury <[email protected]>
date: 2025-02-07T17:35:59-05:00
summary:
gh-129825: Skip test_faulthandler.test_register_chain under TSAN (gh-129827)
The test hangs when run under TSAN due to an interaction between TSAN's
signal interception and our attempt to call the previous signal handler.
files:
M Lib/test/test_faulthandler.py
diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py
index 75d303cd212c82..bcebaef0a5101a 100644
--- a/Lib/test/test_faulthandler.py
+++ b/Lib/test/test_faulthandler.py
@@ -795,6 +795,7 @@ def test_register_fd(self):
def test_register_threads(self):
self.check_register(all_threads=True)
+ @support.skip_if_sanitizer("gh-129825: hangs under TSAN", thread=True)
def test_register_chain(self):
self.check_register(chain=True)
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]