[pypy-commit] pypy kill-someobject: Fix test_rtagged

arigo noreply at buildbot.pypy.org
Fri Oct 12 16:46:25 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: kill-someobject
Changeset: r58056:2375e0c42e82
Date: 2012-10-12 16:45 +0200
http://bitbucket.org/pypy/pypy/changeset/2375e0c42e82/

Log:	Fix test_rtagged

diff --git a/pypy/translator/c/test/test_rtagged.py b/pypy/translator/c/test/test_rtagged.py
--- a/pypy/translator/c/test/test_rtagged.py
+++ b/pypy/translator/c/test/test_rtagged.py
@@ -67,7 +67,7 @@
 from pypy import conftest
 
 def test_tagged_boehm():
-    t = Translation(entry_point, standalone=True, gc='boehm', taggedpointers=True)
+    t = Translation(entry_point, gc='boehm', taggedpointers=True)
     try:
         exename = str(t.compile_c())
     finally:


More information about the pypy-commit mailing list