Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r49293:3079baf884b8
Date: 2011-11-04 12:53 +0100
http://bitbucket.org/pypy/pypy/changeset/3079baf884b8/

Log:    fix test

diff --git a/pypy/jit/backend/arm/test/test_assembler.py 
b/pypy/jit/backend/arm/test/test_assembler.py
--- a/pypy/jit/backend/arm/test/test_assembler.py
+++ b/pypy/jit/backend/arm/test/test_assembler.py
@@ -32,7 +32,8 @@
 
     def test_make_operation_list(self):
         i = rop.INT_ADD
-        assert self.a.operations[i] is AssemblerARM.emit_op_int_add.im_func
+        from pypy.jit.backend.arm import assembler
+        assert assembler.asm_operations[i] is 
AssemblerARM.emit_op_int_add.im_func
 
     def test_load_small_int_to_reg(self):
         self.a.gen_func_prolog()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to