Processes test run output and updates result tracker. Args: output: Output object from the test run. result_tracker: ResultTracker object to be updated. count: Index of the test run (used for better logging).
(self, output, result_tracker, count)
| 606 | handle_sigterm=True) |
| 607 | |
| 608 | def ProcessOutput(self, output, result_tracker, count): |
| 609 | """Processes test run output and updates result tracker. |
| 610 | |
| 611 | Args: |
| 612 | output: Output object from the test run. |
| 613 | result_tracker: ResultTracker object to be updated. |
| 614 | count: Index of the test run (used for better logging). |
| 615 | """ |
| 616 | if self.results_processor: |
| 617 | output = RunResultsProcessor(self.results_processor, output, count) |
| 618 | |
| 619 | self.ConsumeOutput(output, result_tracker) |
| 620 | |
| 621 | |
| 622 | class RunnableLeafTraceConfig(LeafTraceConfig, RunnableConfig): |
no test coverage detected