(self, process_ctx)
| 16 | self.keep_output = keep_output |
| 17 | |
| 18 | def run(self, process_ctx): |
| 19 | output = self.cmd.execute() |
| 20 | reduction = process_ctx.result_reduction if not self.keep_output else None |
| 21 | result = self.outproc.process(output, reduction) |
| 22 | return JobResult(self.test_id, result) |
| 23 | |
| 24 | |
| 25 | class ExecutionProc(base.TestProc): |