Author: Maciej Fijalkowski <[email protected]>
Branch: single-run
Changeset: r222:7ff9ed5173d8
Date: 2013-08-01 20:38 +0200
http://bitbucket.org/pypy/benchmarks/changeset/7ff9ed5173d8/

Log:    one more fix

diff --git a/unladen_swallow/perf.py b/unladen_swallow/perf.py
--- a/unladen_swallow/perf.py
+++ b/unladen_swallow/perf.py
@@ -964,19 +964,17 @@
     return SimpleBenchmark(MeasureSpitfireWithPsyco, *args, **kwargs)
 
 
-def BM_SlowSpitfire(base_python, changed_python, options):
+def BM_SlowSpitfire(python, options):
     extra_args = ["--disable_psyco"]
     spitfire_env = {"PYTHONPATH": Relative("lib/spitfire")}
 
     try:
-        changed_data = MeasureSpitfire(changed_python, options,
-                                       spitfire_env, extra_args)
-        base_data = MeasureSpitfire(base_python, options,
-                                    spitfire_env, extra_args)
+        data = MeasureSpitfire(python, options,
+                               spitfire_env, extra_args)
     except subprocess.CalledProcessError, e:
         return str(e)
 
-    return CompareBenchmarkData(base_data, changed_data, options)
+    return CompareBenchmarkData(data, options)
 
 
 def MeasurePickle(python, options, extra_args):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to