[pypy-commit] pypy jitframe-on-heap: the famous never passing test

fijal noreply at buildbot.pypy.org
Mon Feb 11 10:17:52 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r61068:bccb2f5c2cec
Date: 2013-02-11 11:16 +0200
http://bitbucket.org/pypy/pypy/changeset/bccb2f5c2cec/

Log:	the famous never passing test

diff --git a/rpython/jit/backend/x86/test/test_runner.py b/rpython/jit/backend/x86/test/test_runner.py
--- a/rpython/jit/backend/x86/test/test_runner.py
+++ b/rpython/jit/backend/x86/test/test_runner.py
@@ -31,8 +31,11 @@
     # ====> ../../test/runner_test.py
 
     add_loop_instructions = ['mov', 'add', 'test', 'je', 'jmp']
-    bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'mov', 'mov',
-                                'call', 'mov', 'jmp']
+    if WORD == 4:
+        bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'call', 'jmp']
+    else:
+        bridge_loop_instructions = ['cmp', 'jge', 'mov', 'mov', 'mov', 'mov',
+                                    'call', 'mov', 'jmp']
 
     def get_cpu(self):
         cpu = CPU(rtyper=None, stats=FakeStats())


More information about the pypy-commit mailing list