mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 04:21:17 +00:00
fw/signal: Rename and implement signal for RUN_OUTPUT_PROCESSED
Rename the OVERALL_RESULTS_PROCESSING signal to be called RUN_OUTPUT_PROCESSED and provide implementation.
This commit is contained in:
parent
b15b937863
commit
baf570fc62
@ -491,6 +491,7 @@ class Runner(object):
|
|||||||
self.logger.info('Finalizing run')
|
self.logger.info('Finalizing run')
|
||||||
self.context.end_run()
|
self.context.end_run()
|
||||||
self.pm.enable_all()
|
self.pm.enable_all()
|
||||||
|
with signal.wrap('RUN_OUTPUT_PROCESSED'):
|
||||||
self.pm.process_run_output(self.context)
|
self.pm.process_run_output(self.context)
|
||||||
self.pm.export_run_output(self.context)
|
self.pm.export_run_output(self.context)
|
||||||
self.pm.finalize()
|
self.pm.finalize()
|
||||||
|
@ -173,12 +173,12 @@ SUCCESSFUL_TARGET_DISCONNECT = Signal('successful-target-disconnect')
|
|||||||
AFTER_TARGET_DISCONNECT = Signal('after-target-disconnect')
|
AFTER_TARGET_DISCONNECT = Signal('after-target-disconnect')
|
||||||
|
|
||||||
|
|
||||||
BEFORE_OVERALL_RESULTS_PROCESSING = Signal(
|
BEFORE_RUN_OUTPUT_PROCESSED = Signal(
|
||||||
'before-overall-results-process', invert_priority=True)
|
'before-run-output-processed', invert_priority=True)
|
||||||
SUCCESSFUL_OVERALL_RESULTS_PROCESSING = Signal(
|
SUCCESSFUL_RUN_OUTPUT_PROCESSED = Signal(
|
||||||
'successful-overall-results-process')
|
'successful-run-output-processed')
|
||||||
AFTER_OVERALL_RESULTS_PROCESSING = Signal(
|
AFTER_RUN_OUTPUT_PROCESSED = Signal(
|
||||||
'after-overall-results-process')
|
'after-run-output-processed')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user