[pypy-svn] r35392 - pypy/branch/jit-real-world/pypy/jit/timeshifter/test

arigo at codespeak.net arigo at codespeak.net
Wed Dec 6 14:20:54 CET 2006


Author: arigo
Date: Wed Dec  6 14:20:53 2006
New Revision: 35392

Modified:
   pypy/branch/jit-real-world/pypy/jit/timeshifter/test/test_promotion.py
Log:
And now a missing convert_arguments.


Modified: pypy/branch/jit-real-world/pypy/jit/timeshifter/test/test_promotion.py
==============================================================================
--- pypy/branch/jit-real-world/pypy/jit/timeshifter/test/test_promotion.py	(original)
+++ pypy/branch/jit-real-world/pypy/jit/timeshifter/test/test_promotion.py	Wed Dec  6 14:20:53 2006
@@ -225,6 +225,8 @@
                 hint(n1, concrete=True)
                 n2 -= 1
             return total
+        void = lambda s: None
+        ll_function.convert_arguments = [void, int, int, void, int]
 
         res = self.timeshift(ll_function, [None, 4, 3, None, 100], [0],
                              policy=P_NOVIRTUAL)



More information about the Pypy-commit mailing list