Author: Maciej Fijalkowski <[email protected]>
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')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to