[pypy-svn] r59174 - pypy/branch/oo-jit/pypy/jit/codegen/cli/test

antocuni at codespeak.net antocuni at codespeak.net
Fri Oct 17 14:36:39 CEST 2008


Author: antocuni
Date: Fri Oct 17 14:36:38 2008
New Revision: 59174

Added:
   pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_promotion.py   (contents, props changed)
Log:
cool, about half of the promotion tests pass out of the box on cli



Added: pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_promotion.py
==============================================================================
--- (empty file)
+++ pypy/branch/oo-jit/pypy/jit/codegen/cli/test/test_gencli_promotion.py	Fri Oct 17 14:36:38 2008
@@ -0,0 +1,23 @@
+import py
+from pypy.jit.rainbow.test.test_promotion import TestOOType as PromotionTest
+from pypy.jit.codegen.cli.test.test_gencli_interpreter import CompiledCliMixin
+
+class TestPromotionCli(CompiledCliMixin, PromotionTest):
+
+    # for the individual tests see
+    # ====> ../../../rainbow/test/test_promotion.py
+
+    def skip(self):
+        py.test.skip('in progress')
+
+    test_many_promotions = skip
+    test_two_promotions = skip
+    more_promotes = skip
+    mixed_merges = skip
+    remembers_across_mp = skip
+    test_virtual_list_copy = skip
+    test_raise_result_mixup = skip
+    test_two_promotions_in_call = skip
+    test_promote_class = skip
+    test_promote_class_vstruct = skip
+    test_read___class___after_promotion = skip



More information about the Pypy-commit mailing list