cpython: Issue #11393: Disable test_stack_overflow of test_faulthandler

http://hg.python.org/cpython/rev/25a2aeecb34b changeset: 69072:25a2aeecb34b user: Victor Stinner <victor.stinner@haypocalc.com> date: Thu Mar 31 02:05:54 2011 +0200 summary: Issue #11393: Disable test_stack_overflow of test_faulthandler files: Lib/test/test_faulthandler.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -153,6 +153,7 @@ 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): -- Repository URL: http://hg.python.org/cpython
participants (1)
-
victor.stinner