[pypy-commit] pypy jitframe-on-heap: fix the test

fijal noreply at buildbot.pypy.org
Wed Mar 6 23:01:58 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r62146:aef7ed124ee1
Date: 2013-03-07 00:01 +0200
http://bitbucket.org/pypy/pypy/changeset/aef7ed124ee1/

Log:	fix the test

diff --git a/rpython/jit/backend/llsupport/test/test_gc_integration.py b/rpython/jit/backend/llsupport/test/test_gc_integration.py
--- a/rpython/jit/backend/llsupport/test/test_gc_integration.py
+++ b/rpython/jit/backend/llsupport/test/test_gc_integration.py
@@ -85,7 +85,7 @@
             else:
                 assert nos ==  [4, 5, 25]
         elif self.cpu.backend_name.startswith('arm'):
-            assert nos == []
+            assert nos == [15, 25, 26]
         else:
             raise Exception("write the data here")
         assert frame.jf_frame[nos[0]]


More information about the pypy-commit mailing list