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

antocuni at codespeak.net antocuni at codespeak.net
Wed May 20 18:36:31 CEST 2009


Author: antocuni
Date: Wed May 20 18:36:30 2009
New Revision: 65337

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_exception.py
Log:
more passing tests. test_int_lshift_ovf still fails because of a
NotImplementedError (will investigate later)



Modified: pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_exception.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_exception.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_exception.py	Wed May 20 18:36:30 2009
@@ -7,17 +7,10 @@
     # for the individual tests see
     # ====> ../../../metainterp/test/test_exception.py
 
-    def skip_loop(self):
-        py.test.skip('jump across loops not implemented yet')
-
     def skip(self):
         py.test.skip('in-progress')
 
-    test_bridge_from_guard_exception = skip_loop
-    test_exception_four_cases = skip_loop
-    test_bridge_from_interpreter_exc = skip_loop
-    test_bridge_from_interpreter_exc_2 = skip_loop
-    test_int_lshift_ovf = skip_loop
+    test_int_lshift_ovf = skip
 
 
 



More information about the Pypy-commit mailing list