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

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Dec 7 09:08:19 CET 2006


Author: cfbolz
Date: Thu Dec  7 09:08:17 2006
New Revision: 35416

Modified:
   pypy/dist/pypy/rpython/memory/gctransform/test/test_refcounting.py
   pypy/dist/pypy/rpython/memory/gctransform/test/test_stacklessframework.py
Log:
two more problems


Modified: pypy/dist/pypy/rpython/memory/gctransform/test/test_refcounting.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform/test/test_refcounting.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform/test/test_refcounting.py	Thu Dec  7 09:08:17 2006
@@ -14,7 +14,7 @@
     from pypy.translator.c import gc
 
     t = rtype(f, args_s)
-    cbuild = CStandaloneBuilder(t, f, gcpolicy=RefcountingGcPolicy2)
+    cbuild = CStandaloneBuilder(t, f, t.config, gcpolicy=RefcountingGcPolicy2)
     db = cbuild.generate_graphs_for_llinterp()
     graph = cbuild.getentrypointptr()._obj.graph
     llinterp = LLInterpreter(t.rtyper)

Modified: pypy/dist/pypy/rpython/memory/gctransform/test/test_stacklessframework.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform/test/test_stacklessframework.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform/test/test_stacklessframework.py	Thu Dec  7 09:08:17 2006
@@ -27,7 +27,7 @@
     from pypy.annotation.listdef import s_list_of_strings
 
     t = rtype(entrypoint, [s_list_of_strings])
-    cbuild = CStandaloneBuilder(t, entrypoint,
+    cbuild = CStandaloneBuilder(t, entrypoint, t.config,
                                 gcpolicy=StacklessFrameworkGcPolicy2)
     db = cbuild.generate_graphs_for_llinterp()
     entrypointptr = cbuild.getentrypointptr()



More information about the Pypy-commit mailing list