Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r61142:932cb78d444f
Date: 2013-02-12 18:14 +0200
http://bitbucket.org/pypy/pypy/changeset/932cb78d444f/

Log:    finish fixing this test

diff --git a/rpython/jit/backend/arm/test/test_runner.py 
b/rpython/jit/backend/arm/test/test_runner.py
--- a/rpython/jit/backend/arm/test/test_runner.py
+++ b/rpython/jit/backend/arm/test/test_runner.py
@@ -61,7 +61,7 @@
         cpu.compile_loop(inp, operations, looptoken)
         args = [i for i in range(1, 15)]
         deadframe = self.cpu.execute_token(looptoken, *args)
-        output = [self.cpu.get_latest_value_int(deadframe, i - 1) for i in 
range(1, 15)]
+        output = [self.cpu.get_int_value(deadframe, i - 1) for i in range(1, 
15)]
         expected = [3, 7, 11, 15, 19, 23, 27, 3, 7, 11, 15, 19, 23, 27]
         assert output == expected
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to