[pypy-commit] pypy refactor-translator: Fix rpython/translator/c/test/test_rtagged.py.

Manuel Jacob noreply at buildbot.pypy.org
Fri Mar 1 18:07:42 CET 2013


Author: Manuel Jacob
Branch: refactor-translator
Changeset: r61893:2b254eb61df4
Date: 2013-02-27 17:05 +0100
http://bitbucket.org/pypy/pypy/changeset/2b254eb61df4/

Log:	Fix rpython/translator/c/test/test_rtagged.py.

diff --git a/rpython/translator/c/test/test_rtagged.py b/rpython/translator/c/test/test_rtagged.py
--- a/rpython/translator/c/test/test_rtagged.py
+++ b/rpython/translator/c/test/test_rtagged.py
@@ -69,7 +69,7 @@
 def test_tagged_boehm():
     t = Translation(entry_point, gc='boehm', taggedpointers=True)
     try:
-        exename = str(t.compile_c())
+        exename = str(t.compile())
     finally:
         if option.view:
             t.view()


More information about the pypy-commit mailing list