[pypy-svn] r60569 - pypy/build/benchmem

hpk at codespeak.net hpk at codespeak.net
Thu Dec 18 14:23:07 CET 2008


Author: hpk
Date: Thu Dec 18 14:23:07 2008
New Revision: 60569

Modified:
   pypy/build/benchmem/report.py
Log:
avoid sorting executables because logic is incomplete


Modified: pypy/build/benchmem/report.py
==============================================================================
--- pypy/build/benchmem/report.py	(original)
+++ pypy/build/benchmem/report.py	Thu Dec 18 14:23:07 2008
@@ -354,7 +354,7 @@
 
     def run_rest(self, filename="table-basetime.txt"):
         p = py.path.local(filename)
-        executables = self.getexecutables(short=True)
+        executables = self.getexecutables(pythonfirst=False, short=True)
         row0 = ["startup"] + executables
         rows = [row0]
         # result.mintimings -> [(name, timings_dict)]



More information about the Pypy-commit mailing list