1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +00:00

workloads/meabo: Fix incorrect add_metric call

This commit is contained in:
Marc Bonnici 2019-03-28 17:38:32 +00:00 committed by setrofim
parent 2c2118ad23
commit 8647ceafd8

View File

@ -278,7 +278,7 @@ class Meabo(Workload):
name = 'phase_{}_thread_{}_{}'.format(cur_phase, name = 'phase_{}_thread_{}_{}'.format(cur_phase,
match.group('thread'), match.group('thread'),
match.group('name')) match.group('name'))
context.result.add_metric(name, int(match.group('value'))) context.add_metric(name, int(match.group('value')))
match = duration_regex.search(line) match = duration_regex.search(line)
if match: if match: