[pypy-commit] benchmarks default: sort benchmark names

bivab noreply at buildbot.pypy.org
Fri Dec 9 10:26:38 CET 2011


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r154:dece54731283
Date: 2011-12-09 10:26 +0100
http://bitbucket.org/pypy/benchmarks/changeset/dece54731283/

Log:	sort benchmark names

diff --git a/runner.py b/runner.py
--- a/runner.py
+++ b/runner.py
@@ -80,7 +80,7 @@
                       default=','.join(BENCHMARK_SET),
                       help=("Comma-separated list of benchmarks to run"
                             " Valid benchmarks are: " +
-                            ", ".join(BENCHMARK_SET)))
+                            ", ".join(sorted(BENCHMARK_SET))))
     parser.add_option('-p', '--pypy-c', default=sys.executable,
                       help='pypy-c or other modified python to run against')
     parser.add_option('-r', '--revision', default=0, action="store",


More information about the pypy-commit mailing list