[Python-checkins] cpython: Issue #25274: Workaround test_sys crash just to keep buildbots usable
victor.stinner
python-checkins at python.org
Wed Sep 30 02:05:10 CEST 2015
https://hg.python.org/cpython/rev/00c1cd1f0131
changeset: 98428:00c1cd1f0131
user: Victor Stinner <victor.stinner at gmail.com>
date: Wed Sep 30 02:02:49 2015 +0200
summary:
Issue #25274: Workaround test_sys crash just to keep buildbots usable
files:
Lib/test/test_sys.py | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -208,7 +208,10 @@
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)
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list