(self, suite, parent, arch)
| 622 | class RunnableLeafTraceConfig(LeafTraceConfig, RunnableConfig): |
| 623 | """Represents a runnable suite definition that is a leaf.""" |
| 624 | def __init__(self, suite, parent, arch): |
| 625 | super(RunnableLeafTraceConfig, self).__init__(suite, parent, arch) |
| 626 | if not self.owners: |
| 627 | logging.error("No owners provided for %s" % self.name) |
| 628 | |
| 629 | def ProcessOutput(self, output, result_tracker, count): |
| 630 | self.ConsumeOutput(output, result_tracker) |