[pypy-commit] pypy default: Uh.

arigo noreply at buildbot.pypy.org
Mon May 16 17:45:44 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r44216:6c861cb812d3
Date: 2011-05-16 15:52 +0000
http://bitbucket.org/pypy/pypy/changeset/6c861cb812d3/

Log:	Uh.

diff --git a/pypy/translator/c/test/test_standalone.py b/pypy/translator/c/test/test_standalone.py
--- a/pypy/translator/c/test/test_standalone.py
+++ b/pypy/translator/c/test/test_standalone.py
@@ -163,13 +163,13 @@
             return 0
         from pypy.translator.interactive import Translation
         # XXX this is mostly a "does not crash option"
-        t = Translation(entry_point, backend='c', standalone=True, profopt="")
+        t = Translation(entry_point, backend='c', standalone=True, profopt="100")
         # no counters
         t.backendopt()
         exe = t.compile()
         out = py.process.cmdexec("%s 500" % exe)
         assert int(out) == 500*501/2
-        t = Translation(entry_point, backend='c', standalone=True, profopt="",
+        t = Translation(entry_point, backend='c', standalone=True, profopt="100",
                         noprofopt=True)
         # no counters
         t.backendopt()


More information about the pypy-commit mailing list