[pypy-svn] r59119 - pypy/branch/cbuild-refactor/pypy/translator/c/test

fijal at codespeak.net fijal at codespeak.net
Wed Oct 15 23:56:17 CEST 2008


Author: fijal
Date: Wed Oct 15 23:56:17 2008
New Revision: 59119

Modified:
   pypy/branch/cbuild-refactor/pypy/translator/c/test/test_rtagged.py
Log:
fix test


Modified: pypy/branch/cbuild-refactor/pypy/translator/c/test/test_rtagged.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/translator/c/test/test_rtagged.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/translator/c/test/test_rtagged.py	Wed Oct 15 23:56:17 2008
@@ -69,7 +69,7 @@
 def test_tagged_boehm():
     t = Translation(entry_point, standalone=True, gc='boehm')
     try:
-        exename = t.compile_c()
+        exename = str(t.compile_c())
     finally:
         if conftest.option.view:
             t.view()



More information about the Pypy-commit mailing list