[pypy-commit] lang-smalltalk default: removed the recursion increasing lines from the test-cases, because they cause segfaults

lwassermann noreply at buildbot.pypy.org
Wed Mar 6 21:16:34 CET 2013


Author: Lars Wassermann <lars.wassermann at gmail.com>
Branch: 
Changeset: r126:c7a6275e8187
Date: 2013-03-06 21:11 +0100
http://bitbucket.org/pypy/lang-smalltalk/changeset/c7a6275e8187/

Log:	removed the recursion increasing lines from the test-cases, because
	they cause segfaults

diff --git a/spyvm/test/jit.py b/spyvm/test/jit.py
--- a/spyvm/test/jit.py
+++ b/spyvm/test/jit.py
@@ -46,7 +46,7 @@
 # Tests
 #
 
-sys.setrecursionlimit(100000)
+# sys.setrecursionlimit(100000)
 
 class TestLLtype(LLJitMixin):
 
diff --git a/targettinybenchsmalltalk.py b/targettinybenchsmalltalk.py
--- a/targettinybenchsmalltalk.py
+++ b/targettinybenchsmalltalk.py
@@ -13,7 +13,7 @@
 # XXX this only compiles if sys.recursionlimit is high enough!
 # On non-Linux platforms I don't know if there is enough stack to
 # compile...
-sys.setrecursionlimit(100000)
+#sys.setrecursionlimit(100000)
 
 def setup():
     from spyvm import objspace


More information about the pypy-commit mailing list