[pypy-commit] pypy resume-refactor: port more stuff

fijal noreply at buildbot.pypy.org
Wed Oct 16 23:12:21 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: resume-refactor
Changeset: r67442:74f3503ae74d
Date: 2013-10-16 23:09 +0200
http://bitbucket.org/pypy/pypy/changeset/74f3503ae74d/

Log:	port more stuff

diff --git a/rpython/jit/backend/test/runner_test.py b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -2580,7 +2580,7 @@
         deadframe = self.cpu.execute_token(looptoken, ord('G'))
         fail = self.cpu.get_latest_descr(deadframe)
         assert fail.identifier == 0
-        assert self.cpu.get_int_value(deadframe, 0) == ord('g')
+        assert self.cpu.get_int_value(deadframe, None, 0) == ord('g')
 
     def test_call_to_c_function_with_callback(self):
         from rpython.rlib.libffi import CDLL, types, ArgChain, clibffi


More information about the pypy-commit mailing list