[pypy-commit] benchmarks default: bah, -O is a required 'option'

antocuni noreply at buildbot.pypy.org
Mon Jul 25 19:35:38 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r136:4af8280b2330
Date: 2011-07-25 19:34 +0200
http://bitbucket.org/pypy/benchmarks/changeset/4af8280b2330/

Log:	bah, -O is a required 'option'

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -117,7 +117,7 @@
 
     translate_py = relative('lib/pypy/pypy/translator/goal/translate.py')
     #targetnop = relative('lib/pypy/pypy/translator/goal/targetnopstandalone.py')
-    args = base_python + [translate_py, '--source', '--dont-write-c-files']
+    args = base_python + [translate_py, '--source', '--dont-write-c-files', '-O2']
     proc = subprocess.Popen(args, stderr=subprocess.PIPE)
     out, err = proc.communicate()
     retcode = proc.poll()


More information about the pypy-commit mailing list