]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/oe-build-perf-report: provide valid title in the html report
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Fri, 15 Sep 2017 12:54:54 +0000 (15:54 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 18 Sep 2017 10:07:23 +0000 (11:07 +0100)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/oe-build-perf-report

index 4e067caba0ba9861daf043beabf90bba5ec46fc7..8d730cd20a0b809e58ec663dc8fd3a0c572523e8 100755 (executable)
@@ -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):