[pypy-commit] benchmarks single-run: the last one I think

fijal noreply at buildbot.pypy.org
Thu Aug 1 20:52:46 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: single-run
Changeset: r223:a4f27cab0673
Date: 2013-08-01 20:52 +0200
http://bitbucket.org/pypy/benchmarks/changeset/a4f27cab0673/

Log:	the last one I think

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -141,7 +141,7 @@
         ('database', 0.4)
         ]
 
-def BM_translate(base_python, changed_python, options):
+def BM_translate(python, options):
     """
     Run translate.py and returns a benchmark result for each of the phases.
     Note that we run it only with ``base_python`` (which corresponds to
@@ -151,7 +151,7 @@
     translate_py = relative('lib/pypy/rpython/bin/rpython')
     target = relative('lib/pypy/pypy/goal/targetpypystandalone.py')
     #targetnop = relative('lib/pypy/pypy/translator/goal/targetnopstandalone.py')
-    args = base_python + [translate_py, '--source', '--dont-write-c-files', '-O2', target]
+    args = python + [translate_py, '--source', '--dont-write-c-files', '-O2', target]
     logging.info('Running %s', ' '.join(args))
     environ = os.environ.copy()
     environ['PYTHONPATH'] = relative('lib/pypy')


More information about the pypy-commit mailing list