[pypy-svn] r37417 - pypy/dist/pypy/jit/codegen/ppc/test

arigo at codespeak.net arigo at codespeak.net
Sat Jan 27 01:14:34 CET 2007


Author: arigo
Date: Sat Jan 27 01:14:29 2007
New Revision: 37417

Modified:
   pypy/dist/pypy/jit/codegen/ppc/test/test_rgenop.py
Log:
Sorry, misplaced the skips.


Modified: pypy/dist/pypy/jit/codegen/ppc/test/test_rgenop.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/ppc/test/test_rgenop.py	(original)
+++ pypy/dist/pypy/jit/codegen/ppc/test/test_rgenop.py	Sat Jan 27 01:14:29 2007
@@ -15,13 +15,13 @@
 class TestRPPCGenop(AbstractRGenOpTests):
     RGenOp = RPPCGenOp
 
+    def test_read_frame_var_direct(self):   py.test.skip("in-progress")
+    def test_read_frame_var_compile(self):  py.test.skip("in-progress")
+    def test_write_frame_place_direct(self):  py.test.skip("in-progress")
+    def test_write_frame_place_compile(self): py.test.skip("in-progress")
+
 class TestRPPCGenopNoRegs(TestRPPCGenop):
     RGenOp = FewRegisters
 
     def compile(self, runner, argtypes):
         py.test.skip("Skip compiled tests w/ restricted register allocator")
-
-    def test_read_frame_var_direct(self):   py.test.skip("in-progress")
-    def test_read_frame_var_compile(self):  py.test.skip("in-progress")
-    def test_write_frame_place_direct(self):  py.test.skip("in-progress")
-    def test_write_frame_place_compile(self): py.test.skip("in-progress")



More information about the Pypy-commit mailing list