1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-21 20:38:57 +00:00

iozone: Rewrite parse_metrics() function

When users specify tests, the parse_metrics()
function doesn't capture the last report name and its
results during the parsing process. Fix the
parse_metrics() function to make sure the data for
all reports are captured.

Signed-off-by: Lisa Nguyen <lisa.nguyen@linaro.org>
This commit is contained in:
Lisa Nguyen 2015-10-01 12:38:04 -07:00
parent 361f1a0f0c
commit 812bbffab1

View File

@ -240,6 +240,9 @@ class Iozone(Workload):
value_list.append(subvalue_list)
subvalue_list = []
if subvalue_list:
value_list.append(subvalue_list)
for reports in value_list:
# grab report name and convert it to a string
report_name = reports[0]