From: Victor Stinner Date: Thu, 31 Mar 2011 00:05:54 +0000 (+0200) Subject: Issue #11393: Disable test_stack_overflow of test_faulthandler X-Git-Tag: v3.3.0a1~2723 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0862d6ed8f75ba77933ad6afe061ca3ef6ee6737;p=thirdparty%2FPython%2Fcpython.git Issue #11393: Disable test_stack_overflow of test_faulthandler --- diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py index 82a76ed4c505..4cf98b0491a7 100644 --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -153,6 +153,7 @@ faulthandler._fatal_error(b'xyz') 2, 'xyz') + @unittest.skipIf(True, 'test disabled, see #11393') @unittest.skipIf(not hasattr(faulthandler, '_stack_overflow'), 'need faulthandler._stack_overflow()') def test_stack_overflow(self):