[pypy-svn] r65182 - pypy/branch/pyjitpl5/pypy/jit/metainterp/test

arigo at codespeak.net arigo at codespeak.net
Sat May 9 16:17:45 CEST 2009


Author: arigo
Date: Sat May  9 16:17:44 2009
New Revision: 65182

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_recursive.py
Log:
This actually fails on ootype only.


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_recursive.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_recursive.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_recursive.py	Sat May  9 16:17:44 2009
@@ -25,7 +25,6 @@
         assert res == main(20)
 
     def test_simple_recursion_with_exc(self):
-        py.test.skip("Fails")
         myjitdriver = JitDriver(greens=[], reds=['n', 'm'])
         class Error(Exception):
             pass
@@ -80,4 +79,5 @@
     pass
 
 class TestOOtype(RecursiveTests, OOJitMixin):
-    pass
+    def test_simple_recursion_with_exc(self):
+        py.test.skip("Fails")



More information about the Pypy-commit mailing list