1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 03:42:35 +01: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:
Marc Bonnici
2018-06-04 12:00:35 +01:00
committed by setrofim
parent b15b937863
commit baf570fc62
2 changed files with 9 additions and 8 deletions

View File

@@ -491,8 +491,9 @@ class Runner(object):
self.logger.info('Finalizing run')
self.context.end_run()
self.pm.enable_all()
self.pm.process_run_output(self.context)
self.pm.export_run_output(self.context)
with signal.wrap('RUN_OUTPUT_PROCESSED'):
self.pm.process_run_output(self.context)
self.pm.export_run_output(self.context)
self.pm.finalize()
signal.disconnect(self._error_signalled_callback, signal.ERROR_LOGGED)
signal.disconnect(self._warning_signalled_callback, signal.WARNING_LOGGED)