[pypy-svn] r65120 - pypy/branch/pyjitpl5/pypy/jit/backend/cli/test

antocuni at codespeak.net antocuni at codespeak.net
Wed May 6 20:44:51 CEST 2009


Author: antocuni
Date: Wed May  6 20:44:50 2009
New Revision: 65120

Added:
   pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/__init__.py   (contents, props changed)
   pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_send.py   (contents, props changed)
Log:
more translated tests


Added: pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/__init__.py
==============================================================================

Added: pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_send.py
==============================================================================
--- (empty file)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_send.py	Wed May  6 20:44:50 2009
@@ -0,0 +1,22 @@
+import py
+from pypy.jit.backend.cli.test.test_zrpy_basic import CliTranslatedJitMixin
+from pypy.jit.metainterp.test import test_send
+
+
+class TestSend(CliTranslatedJitMixin, test_send.TestOOtype):
+    # for the individual tests see
+    # ====> ../../../metainterp/test/test_send.py
+
+    def skip(self):
+        py.test.skip('in-progress')
+
+    test_red_builtin_send = skip
+    test_send_to_single_target_method = skip
+    test_oosend_base = skip
+    test_three_receivers = skip
+    test_oosend_different_initial_class = skip
+    test_indirect_call_unknown_object_1 = skip
+    test_three_cases = skip
+    test_three_classes = skip
+    test_recursive_call_to_portal_from_blackhole = skip
+    test_residual_oosend = skip



More information about the Pypy-commit mailing list