Author: Maciej Fijalkowski <[email protected]>
Branch:
Changeset: r151:39ae6234d7ac
Date: 2011-10-27 11:53 +0200
http://bitbucket.org/pypy/benchmarks/changeset/39ae6234d7ac/
Log: don't report stackcheck numbers
diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -81,12 +81,12 @@
for line in lines:
if (line == 'Timings:' or
line.startswith('============') or
- line.startswith('Total:')):
+ line.startswith('Total:') or
+ 'stackcheck' in line):
continue
name, _, time = map(str.strip, line.partition('---'))
name = name.replace('_lltype', '')
name = name.replace('_c', '')
- name = name.replace('stackcheckinsertion', 'stackcheck')
assert time.endswith(' s')
time = float(time[:-2])
timings.append((name, time))
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit