diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2017-09-15 15:54:54 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-18 11:07:30 +0100 |
commit | eaeb6981291226f3f883f01e4827e711f93ec44d (patch) | |
tree | d14372c0cea97b2abcfcb8c456a1f8c12ca5522c | |
parent | 93139fb66e9a914a867aea76aa155b4fa8ff1757 (diff) | |
download | poky-eaeb6981291226f3f883f01e4827e711f93ec44d.tar.gz |
scripts/oe-build-perf-report: provide valid title in the html report
(From OE-Core rev: 46312fde635a717e41d12e7ef01940838316ae17)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/oe-build-perf-report | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index 4e067caba0..8d730cd20a 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report | |||
@@ -396,7 +396,9 @@ def print_html_report(data, id_comp): | |||
396 | 'max': get_data_item(data[-1][0], 'layers.meta.commit_count')} | 396 | 'max': get_data_item(data[-1][0], 'layers.meta.commit_count')} |
397 | } | 397 | } |
398 | 398 | ||
399 | print(html.template.render(metadata=metadata, test_data=tests, chart_opts=chart_opts)) | 399 | print(html.template.render(title="Build Perf Test Report", |
400 | metadata=metadata, test_data=tests, | ||
401 | chart_opts=chart_opts)) | ||
400 | 402 | ||
401 | 403 | ||
402 | def dump_buildstats(repo, outdir, notes_ref, revs): | 404 | def dump_buildstats(repo, outdir, notes_ref, revs): |