From: Victor Stinner Date: Wed, 30 Sep 2015 00:02:49 +0000 (+0200) Subject: Issue #25274: Workaround test_sys crash just to keep buildbots usable X-Git-Tag: v3.6.0a1~1376 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00b8f9bb9ea1a246acc27f371c123016d50842aa;p=python Issue #25274: Workaround test_sys crash just to keep buildbots usable --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 83549bc537..ccbf262af8 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -208,7 +208,10 @@ class SysModuleTest(unittest.TestCase): def f(): f() try: - for i in (50, 1000): + # FIXME: workaround crash for the issue #25274 + # FIXME: until the crash is fixed + #for i in (50, 1000): + for i in (150, 1000): # Issue #5392: stack overflow after hitting recursion limit twice sys.setrecursionlimit(i) self.assertRaises(RecursionError, f)