(original) (raw)
changeset: 69072:25a2aeecb34b user: Victor Stinner victor.stinner@haypocalc.com date: Thu Mar 31 02:05:54 2011 +0200 files: Lib/test/test_faulthandler.py description: Issue #11393: Disable test_stack_overflow of test_faulthandler diff -r df240014e72f -r 25a2aeecb34b Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py Thu Mar 31 01:34:22 2011 +0200 +++ b/Lib/test/test_faulthandler.py Thu Mar 31 02:05:54 2011 +0200 @@ -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): /victor.stinner@haypocalc.com