summaryrefslogtreecommitdiffstats
path: root/scripts/oe-build-perf-report
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2017-09-15 15:54:50 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-18 11:07:30 +0100
commit062bdb044cc2517256e02daf012415c51fb4d430 (patch)
treec578273fe529461f15886f3c8ad474e9ddbedddd /scripts/oe-build-perf-report
parentec5a5f28e2b517b04add20768d09e33b5c62d292 (diff)
downloadpoky-062bdb044cc2517256e02daf012415c51fb4d430.tar.gz
scripts/oe-build-perf-report: add AggregateTestData class
Making the code a bit more readable. (From OE-Core rev: 25351c7cac167b1a3e8b531e2cdf708192c6fa1f) 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>
Diffstat (limited to 'scripts/oe-build-perf-report')
-rwxr-xr-xscripts/oe-build-perf-report16
1 files changed, 9 insertions, 7 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report
index 23081db173..3a76ab621d 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -29,7 +29,8 @@ sys.path.append(os.path.join(scripts_path, 'lib'))
29import scriptpath 29import scriptpath
30from build_perf import print_table 30from build_perf import print_table
31from build_perf.report import (metadata_xml_to_json, results_xml_to_json, 31from build_perf.report import (metadata_xml_to_json, results_xml_to_json,
32 aggregate_data, aggregate_metadata, measurement_stats) 32 aggregate_data, aggregate_metadata, measurement_stats,
33 AggregateTestData)
33from build_perf import html 34from build_perf import html
34 35
35scriptpath.add_oe_lib_path() 36scriptpath.add_oe_lib_path()
@@ -337,13 +338,13 @@ def print_html_report(data, id_comp):
337 'hostname': {'title': 'Hostname', 'value': 'foobar'}, 338 'hostname': {'title': 'Hostname', 'value': 'foobar'},
338 'commit': {'title': 'Commit', 'value': '1234'} 339 'commit': {'title': 'Commit', 'value': '1234'}
339 } 340 }
340 metadata = metadata_diff(data[id_comp][0], data[-1][0]) 341 metadata = metadata_diff(data[id_comp].metadata, data[-1].metadata)
341 342
342 343
343 # Generate list of tests 344 # Generate list of tests
344 tests = [] 345 tests = []
345 for test in data[-1][1]['tests'].keys(): 346 for test in data[-1].results['tests'].keys():
346 test_r = data[-1][1]['tests'][test] 347 test_r = data[-1].results['tests'][test]
347 new_test = {'name': test_r['name'], 348 new_test = {'name': test_r['name'],
348 'description': test_r['description'], 349 'description': test_r['description'],
349 'status': test_r['status'], 350 'status': test_r['status'],
@@ -576,7 +577,8 @@ def main(argv=None):
576 577
577 data = [] 578 data = []
578 for raw_m, raw_d in raw_data: 579 for raw_m, raw_d in raw_data:
579 data.append((aggregate_metadata(raw_m), aggregate_data(raw_d))) 580 data.append(AggregateTestData(aggregate_metadata(raw_m),
581 aggregate_data(raw_d)))
580 582
581 # Re-map list indexes to the new table starting from index 0 583 # Re-map list indexes to the new table starting from index 0
582 index_r = index_r - index_0 584 index_r = index_r - index_0
@@ -584,8 +586,8 @@ def main(argv=None):
584 586
585 # Print report 587 # Print report
586 if not args.html: 588 if not args.html:
587 print_diff_report(data[index_l][0], data[index_l][1], 589 print_diff_report(data[index_l].metadata, data[index_l].results,
588 data[index_r][0], data[index_r][1]) 590 data[index_r].metadata, data[index_r].results)
589 else: 591 else:
590 print_html_report(data, index_l) 592 print_html_report(data, index_l)
591 593