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:23 +0100 |
commit | 46312fde635a717e41d12e7ef01940838316ae17 (patch) | |
tree | e89c5bab196d7e6d15eaa6229cf1132014806fcf /scripts | |
parent | a28284fc1bbaa18162f65eee0ae2e94d28091b2f (diff) | |
download | openembedded-core-46312fde635a717e41d12e7ef01940838316ae17.tar.gz openembedded-core-46312fde635a717e41d12e7ef01940838316ae17.tar.bz2 openembedded-core-46312fde635a717e41d12e7ef01940838316ae17.zip |
scripts/oe-build-perf-report: provide valid title in the html report
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-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): 'max': get_data_item(data[-1][0], 'layers.meta.commit_count')} } - print(html.template.render(metadata=metadata, test_data=tests, chart_opts=chart_opts)) + print(html.template.render(title="Build Perf Test Report", + metadata=metadata, test_data=tests, + chart_opts=chart_opts)) def dump_buildstats(repo, outdir, notes_ref, revs): |