diff -r 0968acf0e6db Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py Wed Aug 31 16:52:12 2011 +0200 +++ b/Lib/test/test_faulthandler.py Thu Sep 01 19:58:26 2011 +0200 @@ -174,6 +174,9 @@ 2, 'xyz') + @unittest.skipIf(sys.platform.startswith('openbsd') and HAVE_THREADS, + "Issue #12868: sigaltstack() doesn't work on " + "OpenBSD if Python is compiled with pthread") @unittest.skipIf(not hasattr(faulthandler, '_stack_overflow'), 'need faulthandler._stack_overflow()') def test_stack_overflow(self):