[pypy-svn] r71808 - pypy/benchmarks

fijal at codespeak.net fijal at codespeak.net
Fri Mar 5 17:05:46 CET 2010


Author: fijal
Date: Fri Mar  5 17:05:45 2010
New Revision: 71808

Modified:
   pypy/benchmarks/runner.py
Log:
Kill --fast for now. We should have better way to distinguish warmup
from normal run, but for now simply kill fast


Modified: pypy/benchmarks/runner.py
==============================================================================
--- pypy/benchmarks/runner.py	(original)
+++ pypy/benchmarks/runner.py	Fri Mar  5 17:05:45 2010
@@ -14,7 +14,7 @@
                   force_host=None):
     funcs = perf.BENCH_FUNCS.copy()
     funcs.update(perf._FindAllBenchmarks(benchmarks.__dict__))
-    opts = ['-f', '-b', ','.join(benchmark_set), '--inherit_env=PATH',
+    opts = ['-b', ','.join(benchmark_set), '--inherit_env=PATH',
             '--no_charts']
     if args:
         opts += ['--args', args]



More information about the Pypy-commit mailing list