1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

processors/uxperf: Adds description to processor

This commit is contained in:
Marc Bonnici 2018-01-08 10:24:00 +00:00 committed by setrofim
parent 61710688cb
commit 4f1c1d3b38

View File

@ -7,6 +7,14 @@ class UxperfProcessor(OutputProcessor):
name = 'uxperf'
description = '''
Parse logcat for UX_PERF markers to produce performance metrics for
workload actions using specified instrumentation.
An action represents a series of UI interactions to capture.
NOTE: The UX_PERF markers are turned off by default and must be enabled in
a agenda file by setting ``markers_enabled`` for the workload to ``True``.
'''
def process_job_output(self, output, target_info, job_output):
logcat = output.get_artifact('logcat')
if not logcat: