1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 03:12:34 +01:00

wa: Rename update_results reference to update_output

To be consistant with the rename of output_processors, old references
to `update_results` have now been changed to `update_output`.
This commit is contained in:
Marc Bonnici
2018-01-10 14:37:13 +00:00
committed by setrofim
parent 538cd8d332
commit 987f4ec4f1
9 changed files with 19 additions and 19 deletions

View File

@@ -87,7 +87,7 @@ class Vellamo(ApkUiautoWorkload):
super(Vellamo, self).update_output(context)
# Get total scores from logcat
self.non_root_update_result(context)
self.non_root_update_output(context)
if not self.target.is_rooted:
return
@@ -143,7 +143,7 @@ class Vellamo(ApkUiautoWorkload):
score = result['score']
context.add_metric(name, score)
def non_root_update_result(self, context):
def non_root_update_output(self, context):
failed = []
logcat_file = context.get_artifact_path('logcat')
with open(logcat_file) as fh: