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

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Feb 4 22:34:10 CET 2008


Author: cfbolz
Date: Mon Feb  4 22:34:09 2008
New Revision: 51273

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/test/test_interpreter.py
Log:
those all pass


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:34:09 2008
@@ -584,7 +584,6 @@
         self.check_insns({})
 
     def test_degenerated_before_return(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))
 
@@ -603,7 +602,6 @@
         assert res == 4 * 4
 
     def test_degenerated_before_return_2(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))
 
@@ -656,7 +654,6 @@
             assert parent.n == 3.25
 
     def test_degenerated_via_substructure(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))
 



More information about the Pypy-commit mailing list