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.
This commit is contained in:
Sam Gross 2025-02-07 17:35:59 -05:00 committed by GitHub
parent 5fa7e1b7fd
commit 2248a9c153
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -795,6 +795,7 @@ class FaultHandlerTests(unittest.TestCase):
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)