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

xoraxax at codespeak.net xoraxax at codespeak.net
Tue Oct 28 18:12:39 CET 2008


Author: xoraxax
Date: Tue Oct 28 18:12:38 2008
New Revision: 59496

Modified:
   pypy/build/benchmem/report_graphic.py
Log:
I did not notice Fijals appprofile benchrunner so I inserted the wrong filter ... Did no reviewer spot it? :)

Modified: pypy/build/benchmem/report_graphic.py
==============================================================================
--- pypy/build/benchmem/report_graphic.py	(original)
+++ pypy/build/benchmem/report_graphic.py	Tue Oct 28 18:12:38 2008
@@ -10,7 +10,7 @@
     resultset = runbench.ResultSet()
     resultset.parse(py.path.local(filename), True)
     # by default it shows all graphs, a bit boring, but educating ;)
-    for name, results in resultset.filter(benchtype="objsizes").getname2results():
+    for name, results in resultset.filter(benchtype="appprofiles").getname2results():
         for result in results:
             lgt = len(result.snapshots)
             x = [float(i)/lgt for i in range(lgt)]



More information about the Pypy-commit mailing list