[pypy-svn] r35365 - pypy/dist/pypy/rpython/memory/gctransform/test

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Dec 6 09:09:28 CET 2006


Author: cfbolz
Date: Wed Dec  6 09:09:23 2006
New Revision: 35365

Modified:
   pypy/dist/pypy/rpython/memory/gctransform/test/test_framework.py
Log:
sorry for the trial-and-error check in yesterday :-(.

fix the first of a row of tests that failed due to my refactoring.


Modified: pypy/dist/pypy/rpython/memory/gctransform/test/test_framework.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform/test/test_framework.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform/test/test_framework.py	Wed Dec  6 09:09:23 2006
@@ -26,7 +26,8 @@
     from pypy.annotation.listdef import s_list_of_strings
 
     t = rtype(entrypoint, [s_list_of_strings])
-    cbuild = CStandaloneBuilder(t, entrypoint, gcpolicy=FrameworkGcPolicy2)
+    cbuild = CStandaloneBuilder(t, entrypoint, t.config,
+                                gcpolicy=FrameworkGcPolicy2)
     db = cbuild.generate_graphs_for_llinterp()
     entrypointptr = cbuild.getentrypointptr()
     entrygraph = entrypointptr._obj.graph



More information about the Pypy-commit mailing list