[pypy-svn] r66167 - pypy/branch/pyjitpl5/pypy/jit/backend/x86/test

arigo at codespeak.net arigo at codespeak.net
Fri Jul 10 19:19:12 CEST 2009


Author: arigo
Date: Fri Jul 10 19:19:11 2009
New Revision: 66167

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_recursive.py
Log:
Skip a test that is not supposed to be translated.


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_recursive.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_recursive.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/x86/test/test_zrpy_recursive.py	Fri Jul 10 19:19:11 2009
@@ -1,7 +1,9 @@
 
-
+import py
 from pypy.jit.metainterp.test.test_recursive import RecursiveTests
 from pypy.jit.backend.x86.test.test_zrpy_slist import Jit386Mixin
 
 class TestRecursive(Jit386Mixin, RecursiveTests):
-    pass
+
+    def test_inline_faulty_can_inline(self):
+        py.test.skip("this test is not supposed to be translated")



More information about the Pypy-commit mailing list