aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDavid Horstmann <david.horstmann@linaro.org>2019-09-09 12:57:52 +0000
committerLinaro Android Code Review <android-review@review.linaro.org>2019-09-09 12:57:52 +0000
commit327096fe5623d9ff03a793c6fce6d206ccd3f16f (patch)
treeaa9c938d2d1df7504e55b97d3d6ad4fd14c5f7d2 /tools
parent46000dec33f451c3acebd1ffdf6c6ef9d11862b4 (diff)
parent356d1a5d65b0c21b6dce57aca842e73458f6873a (diff)
downloadart-testing-327096fe5623d9ff03a793c6fce6d206ccd3f16f.tar.gz
Merge "Fix run.py result calculation when using the --dont-auto-calibrate option."
Diffstat (limited to 'tools')
-rwxr-xr-xtools/benchmarks/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/benchmarks/run.py b/tools/benchmarks/run.py
index 2a90f3a..c3ea63f 100755
--- a/tools/benchmarks/run.py
+++ b/tools/benchmarks/run.py
@@ -164,7 +164,7 @@ def RunBench(apk, classname,
try:
for line in outerr.rstrip().splitlines():
- if not line.endswith('per iteration'):
+ if not line.startswith('benchmarks/'):
continue
name = line.split(":")[0].rstrip()
score = float(line.split(":")[1].strip().split(" ")[0].strip())