Author: Matti Picus <matti.pi...@gmail.com>
Branch: 
Changeset: r95968:20486c92ed2a
Date: 2019-02-12 12:54 +0200
http://bitbucket.org/pypy/pypy/changeset/20486c92ed2a/

Log:    fix test for linux 32

diff --git a/rpython/memory/gc/test/test_direct.py 
b/rpython/memory/gc/test/test_direct.py
--- a/rpython/memory/gc/test/test_direct.py
+++ b/rpython/memory/gc/test/test_direct.py
@@ -781,7 +781,7 @@
         def large_malloc():
             # malloc an object which is large enough to trigger a major 
collection
             threshold = self.gc.next_major_collection_threshold
-            self.malloc(VAR, int(threshold/8))
+            self.malloc(VAR, int(threshold/4))
             summary = debuglog.summary()
             debuglog.reset()
             return summary
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to