diff options
author | Martin Peres <martin.peres@linux.intel.com> | 2015-07-22 21:11:33 +0300 |
---|---|---|
committer | Martin Peres <martin.peres@linux.intel.com> | 2015-07-22 21:11:33 +0300 |
commit | cce6eabf6fd7149745427f14a41120c8eceb43e8 (patch) | |
tree | 6bd05fd4319c2411bf671a8b9affcb39ae587461 /stats | |
parent | 9f2ee93f0b850862306edff6e875fef16f9156ed (diff) |
stats/gen_report: Ignore error files
Diffstat (limited to 'stats')
-rwxr-xr-x | stats/gen_report.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stats/gen_report.py b/stats/gen_report.py index 45a76a5..8f24814 100755 --- a/stats/gen_report.py +++ b/stats/gen_report.py @@ -81,6 +81,10 @@ for commitLine in commitsLines: if re.search(r'#\d+$', benchFile) is not None: continue + # Skip on error files + if re.search(r'.errors$', benchFile) is not None: + continue + # Get the bench name bench_name = benchFile.replace("{sha1}_bench_".format(sha1=commit.sha1), "") |