[pypy-commit] pypy default: skip test_setitem_slice_performance on ARM

fijal noreply at buildbot.pypy.org
Sun May 5 16:10:11 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r63861:c2fa8ac5a7c8
Date: 2013-05-05 09:03 -0500
http://bitbucket.org/pypy/pypy/changeset/c2fa8ac5a7c8/

Log:	skip test_setitem_slice_performance on ARM

diff --git a/pypy/objspace/std/test/test_listobject.py b/pypy/objspace/std/test/test_listobject.py
--- a/pypy/objspace/std/test/test_listobject.py
+++ b/pypy/objspace/std/test/test_listobject.py
@@ -948,6 +948,9 @@
     def test_setitem_slice_performance(self):
         # because of a complexity bug, this used to take forever on a
         # translated pypy.  On CPython2.6 -A, it takes around 5 seconds.
+        import platform
+        if platform.machine().startswith('arm'):
+            skip("consumes too much memory for most ARM machines")
         if self.runappdirect:
             count = 16*1024*1024
         else:


More information about the pypy-commit mailing list