[pypy-svn] r33693 - pypy/branch/even-more-config3/pypy/translator/c/test

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Oct 24 21:37:20 CEST 2006


Author: cfbolz
Date: Tue Oct 24 21:37:19 2006
New Revision: 33693

Modified:
   pypy/branch/even-more-config3/pypy/translator/c/test/test_genc.py
Log:
oops, forgot to propagate policy


Modified: pypy/branch/even-more-config3/pypy/translator/c/test/test_genc.py
==============================================================================
--- pypy/branch/even-more-config3/pypy/translator/c/test/test_genc.py	(original)
+++ pypy/branch/even-more-config3/pypy/translator/c/test/test_genc.py	Tue Oct 24 21:37:19 2006
@@ -32,7 +32,8 @@
 
 def compile(fn, argtypes, view=False, gcpolicy="ref", backendopt=True,
             annotatorpolicy=None):
-    t = Translation(fn, argtypes, gc=gcpolicy, backend="c")
+    t = Translation(fn, argtypes, gc=gcpolicy, backend="c",
+                    policy=annotatorpolicy)
     if not backendopt:
         t.disable(["backendopt_lltype"])
     t.annotate()



More information about the Pypy-commit mailing list