[pypy-commit] pypy optresult: try to collect a few more times to see if it's a problem

fijal noreply at buildbot.pypy.org
Fri Jun 5 10:54:52 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: optresult
Changeset: r77892:5a8c401e9d0b
Date: 2015-06-05 10:54 +0200
http://bitbucket.org/pypy/pypy/changeset/5a8c401e9d0b/

Log:	try to collect a few more times to see if it's a problem

diff --git a/rpython/jit/backend/llsupport/test/zrpy_gc_test.py b/rpython/jit/backend/llsupport/test/zrpy_gc_test.py
--- a/rpython/jit/backend/llsupport/test/zrpy_gc_test.py
+++ b/rpython/jit/backend/llsupport/test/zrpy_gc_test.py
@@ -51,7 +51,8 @@
             r = g(name, n)
             r_list.append(r)
             rgc.collect()
-        rgc.collect(); rgc.collect()
+        for i in range(3):
+            rgc.collect(); rgc.collect()
         freed = 0
         for r in r_list:
             if r() is None:


More information about the pypy-commit mailing list