1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-20 04:02:36 +01:00

wa: Rename results_processors to output_processors

For clarity and to better reflect their purpose, rename
`results_processors` to `output_processors`.
This commit is contained in:
Marc Bonnici
2018-01-12 15:22:11 +00:00
committed by setrofim
parent a688c9120e
commit 538cd8d332
16 changed files with 42 additions and 42 deletions

View File

@@ -48,8 +48,8 @@ class InstrumentError(WAError):
pass
class ResultProcessorError(WAError):
"""General ResultProcessor error."""
class OutputProcessorError(WAError):
"""General OutputProcessor error."""
pass
@@ -135,7 +135,7 @@ class WorkerThreadError(WAError):
orig = self.exc_info[1]
orig_name = type(orig).__name__
text = 'Exception of type {} occured on thread {}:\n{}\n{}: {}'
message = text.format(orig_name, thread, get_traceback(self.exc_info),
message = text.format(orig_name, thread, get_traceback(self.exc_info),
orig_name, orig)
super(WorkerThreadError, self).__init__(message)