[pypy-svn] r64828 - pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test

antocuni at codespeak.net antocuni at codespeak.net
Wed Apr 29 19:14:09 CEST 2009


Author: antocuni
Date: Wed Apr 29 19:14:08 2009
New Revision: 64828

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_exception.py
Log:
cool, the first cli translated test passes


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_exception.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_exception.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/minimal/test/test_zrpy_exception.py	Wed Apr 29 19:14:08 2009
@@ -22,7 +22,32 @@
 
 
 class TestOOtype(OOTranslatedJitMixin, test_zrpy_exception.TestLLExceptions):
-    pass
+
+    def skip(self):
+        py.test.skip('in-progress')
+
+    test_bridge_from_guard_exception = skip
+    test_bridge_from_guard_no_exception = skip
+    test_loop = skip
+    test_four_levels_checks = skip
+    test_exception_from_outside = skip
+    test_exception_from_outside_2 = skip
+    test_exception_two_cases = skip
+    test_exception_two_cases_2 = skip
+    test_exception_later = skip
+    test_exception_and_then_no_exception = skip
+    test_int_ovf = skip
+    test_int_mod_ovf_zer = skip
+    test_int_lshift_ovf = skip
+    test_reraise_through_portal = skip
+    test_bridge_from_interpreter_exc = skip
+    test_bridge_from_interpreter_exc_2 = skip
+    test_raise = skip
+    test_raise_through = skip
+    test_raise_through_wrong_exc = skip
+    test_raise_through_wrong_exc_2 = skip
+
+
 
 class TestLLtype(LLTranslatedJitMixin, test_zrpy_exception.TestLLExceptions):
     # for the individual tests see



More information about the Pypy-commit mailing list