diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-31 00:05:54 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-31 00:05:54 (GMT) |
commit | 0862d6ed8f75ba77933ad6afe061ca3ef6ee6737 (patch) | |
tree | 1212db909adf1835df27dbd9d6a35a03d9a18676 /Lib/test | |
parent | bb14b370443660e522f239bfb401afcf32f556ff (diff) | |
download | cpython-0862d6ed8f75ba77933ad6afe061ca3ef6ee6737.zip cpython-0862d6ed8f75ba77933ad6afe061ca3ef6ee6737.tar.gz cpython-0862d6ed8f75ba77933ad6afe061ca3ef6ee6737.tar.bz2 |
Issue #11393: Disable test_stack_overflow of test_faulthandler
Diffstat (limited to 'Lib/test')
-rw-r--r-- | 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 index 82a76ed..4cf98b0 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): |