[pypy-svn] r36785 - pypy/dist/pypy/jit/codegen/dump/test

arigo at codespeak.net arigo at codespeak.net
Mon Jan 15 19:22:58 CET 2007


Author: arigo
Date: Mon Jan 15 19:22:57 2007
New Revision: 36785

Modified:
   pypy/dist/pypy/jit/codegen/dump/test/test_rgenop.py
Log:
Cannot compile these tests to C, as the llgraph backend cannot be compiled to C.


Modified: pypy/dist/pypy/jit/codegen/dump/test/test_rgenop.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/dump/test/test_rgenop.py	(original)
+++ pypy/dist/pypy/jit/codegen/dump/test/test_rgenop.py	Mon Jan 15 19:22:57 2007
@@ -13,11 +13,7 @@
         return dummyfn
 
     def compile(self, runner, argtypes):
-        AbstractRGenOpTests.compile(self, runner, argtypes)
-        # discard the result
-        def dummyfn(*whatever):
-            return Whatever()
-        return dummyfn
+        py.test.skip("cannot compile tests for now")
 
 
 class Whatever(object):



More information about the Pypy-commit mailing list