8000 gh-129825: Skip test_faulthandler.test_register_chain under TSAN by colesbury · Pull Request #129827 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-129825: Skip test_faulthandler.test_register_chain under TSAN #129827

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

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-129825: Skip test_faulthandler.test_register_chain under TSAN
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.
  • Loading branch information
colesbury committed Feb 7, 2025
commit 5e98b082c1f5a7a2dc2935076084ab656f4859a0
1 change: 1 addition & 0 deletions Lib/test/test_faulthandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading
0