[pypy-svn] r35549 - pypy/dist/pypy/jit/codegen/llvm/test

ericvrp at codespeak.net ericvrp at codespeak.net
Sun Dec 10 15:10:20 CET 2006


Author: ericvrp
Date: Sun Dec 10 15:10:17 2006
New Revision: 35549

Added:
   pypy/dist/pypy/jit/codegen/llvm/test/test_genc_portal.py   (contents, props changed)
   pypy/dist/pypy/jit/codegen/llvm/test/test_genc_promotion.py   (contents, props changed)
   pypy/dist/pypy/jit/codegen/llvm/test/test_genc_tlr.py
      - copied, changed from r35548, pypy/dist/pypy/jit/codegen/llvm/test/test_genc_tl.py
   pypy/dist/pypy/jit/codegen/llvm/test/test_genc_vlist.py
      - copied, changed from r35548, pypy/dist/pypy/jit/codegen/i386/test/test_genc_vlist.py
   pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py   (contents, props changed)
Modified:
   pypy/dist/pypy/jit/codegen/llvm/test/test_genc_tl.py
   pypy/dist/pypy/jit/codegen/llvm/test/test_genc_ts.py
Log:
Added (shared) tests that should eventually pass on the llvm jit backend too.


Added: pypy/dist/pypy/jit/codegen/llvm/test/test_genc_portal.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_genc_portal.py	Sun Dec 10 15:10:17 2006
@@ -0,0 +1,17 @@
+import py
+from pypy.jit.codegen.i386.test.test_genc_portal import I386PortalTestMixin
+from pypy.jit.timeshifter.test import test_portal
+from pypy.jit.codegen.llvm.rgenop import RLLVMGenOp
+
+py.test.skip("WIP")
+
+class LLVMPortalTestMixin(I386PortalTestMixin):
+    RGenOp = RLLVMGenOp
+
+class TestPortal(LLVMPortalTestMixin,
+                 test_portal.TestPortal):
+
+    # for the individual tests see
+    # ====> ../../../timeshifter/test/test_portal.py
+    pass
+

Added: pypy/dist/pypy/jit/codegen/llvm/test/test_genc_promotion.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_genc_promotion.py	Sun Dec 10 15:10:17 2006
@@ -0,0 +1,12 @@
+import py
+from pypy.jit.timeshifter.test import test_promotion
+from pypy.jit.codegen.llvm.test.test_genc_ts import LLVMTimeshiftingTestMixin
+
+py.test.skip("WIP")
+
+class TestPromotion(LLVMTimeshiftingTestMixin,
+                    test_promotion.TestPromotion):
+
+    # for the individual tests see
+    # ====> ../../../timeshifter/test/test_promotion.py
+    pass

Modified: pypy/dist/pypy/jit/codegen/llvm/test/test_genc_tl.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/test/test_genc_tl.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_genc_tl.py	Sun Dec 10 15:10:17 2006
@@ -5,7 +5,7 @@
 
 py.test.skip("WIP")
 
-class TestTLR(LLVMTimeshiftingTestMixin,
+class TestTL(LLVMTimeshiftingTestMixin,
               test_tl.TestTL):
 
     # for the individual tests see

Modified: pypy/dist/pypy/jit/codegen/llvm/test/test_genc_ts.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/test/test_genc_ts.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_genc_ts.py	Sun Dec 10 15:10:17 2006
@@ -4,11 +4,11 @@
 from pypy.jit.codegen.llvm.rgenop import RLLVMGenOp
 
 
-py.test.skip("WIP")
-
 class LLVMTimeshiftingTestMixin(I386TimeshiftingTestMixin):
     RGenOp = RLLVMGenOp
 
+py.test.skip("WIP")
+
 class TestTimeshiftLLVM(LLVMTimeshiftingTestMixin,
                         test_timeshift.TestTimeshift):
 

Added: pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py	Sun Dec 10 15:10:17 2006
@@ -0,0 +1,14 @@
+import py
+from pypy.jit.codegen.i386.test.test_operation import TestBasic
+from pypy.jit.codegen.llvm.rgenop import RLLVMGenOp
+
+py.test.skip("WIP")
+
+class LLVMTestBasic(TestBasic):
+    RGenOp = RLLVMGenOp
+
+    # for the individual tests see
+    # ====> ../../../i386/test/test_operation.py
+
+    pass
+



More information about the Pypy-commit mailing list