Author: Armin Rigo <[email protected]>
Branch:
Changeset: r59214:892ba424789f
Date: 2012-12-02 09:25 -0800
http://bitbucket.org/pypy/pypy/changeset/892ba424789f/
Log: Fix these tests
diff --git a/pypy/rpython/memory/gctransform/test/test_framework.py
b/pypy/rpython/memory/gctransform/test/test_framework.py
--- a/pypy/rpython/memory/gctransform/test/test_framework.py
+++ b/pypy/rpython/memory/gctransform/test/test_framework.py
@@ -36,6 +36,7 @@
from pypy.translator.c.genc import CStandaloneBuilder
t = rtype(entrypoint, [s_list_of_strings])
+ t.config.translation.gc = "minimark"
cbuild = CStandaloneBuilder(t, entrypoint, t.config,
gcpolicy=FrameworkGcPolicy2)
db = cbuild.generate_graphs_for_llinterp()
@@ -110,6 +111,7 @@
return g() + 2
t = rtype(entrypoint, [s_list_of_strings])
+ t.config.translation.gc = "minimark"
cbuild = CStandaloneBuilder(t, entrypoint, t.config,
gcpolicy=FrameworkGcPolicy2)
db = cbuild.generate_graphs_for_llinterp()
@@ -133,6 +135,7 @@
return g() + 2
t = rtype(entrypoint, [s_list_of_strings])
+ t.config.translation.gc = "minimark"
cbuild = CStandaloneBuilder(t, entrypoint, t.config,
gcpolicy=FrameworkGcPolicy2)
f = py.test.raises(Exception, cbuild.generate_graphs_for_llinterp)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit