[pypy-commit] pypy default: Randomly attempting to fix arm by copying the Jit386Mixin from

arigo noreply at buildbot.pypy.org
Fri Sep 18 21:09:57 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r79698:e02c3c4e998f
Date: 2015-09-18 21:10 +0200
http://bitbucket.org/pypy/pypy/changeset/e02c3c4e998f/

Log:	Randomly attempting to fix arm by copying the Jit386Mixin from
	x86/test/test_basic

diff --git a/rpython/jit/backend/arm/test/support.py b/rpython/jit/backend/arm/test/support.py
--- a/rpython/jit/backend/arm/test/support.py
+++ b/rpython/jit/backend/arm/test/support.py
@@ -10,7 +10,9 @@
 class JitARMMixin(support.LLJitMixin):
     type_system = 'lltype'
     CPUClass = getcpuclass()
-    basic = True
+    # we have to disable unroll
+    enable_opts = "intbounds:rewrite:virtualize:string:earlyforce:pure:heap"
+    basic = False
 
     def check_jumps(self, maxcount):
         pass


More information about the pypy-commit mailing list