[pypy-svn] r51271 - pypy/branch/jit-refactoring/pypy/jit/rainbow/test

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Feb 4 22:11:08 CET 2008


Author: cfbolz
Date: Mon Feb  4 22:11:06 2008
New Revision: 51271

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_interpreter.py
Log:
another one


Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_interpreter.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_interpreter.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_interpreter.py	Mon Feb  4 22:11:06 2008
@@ -833,7 +833,6 @@
         self.check_insns({'int_lt': 1, 'int_mul': 1})
 
     def test_red_subcontainer(self):
-        py.test.skip("arrays and structs are not working")
         S = lltype.GcStruct('S', ('n', lltype.Signed))
         T = lltype.GcStruct('T', ('s', S), ('n', lltype.Float))
         def ll_function(k):
@@ -845,7 +844,7 @@
             result = s.n * (k-1)
             keepalive_until_here(t)
             return result
-        res = self.interpret(ll_function, [7], [], policy=P_NOVIRTUAL)
+        res = self.interpret(ll_function, [7], [])
         assert res == 42
         self.check_insns({'int_lt': 1, 'int_mul': 1, 'int_sub': 1})
 



More information about the Pypy-commit mailing list