(self, output)
| 577 | return self.context.expect_fail |
| 578 | |
| 579 | def DidFail(self, output): |
| 580 | if output.failed is None: |
| 581 | output.failed = self.IsFailureOutput(output) |
| 582 | return output.failed |
| 583 | |
| 584 | def IsFailureOutput(self, output): |
| 585 | return output.exit_code != 0 |
no test coverage detected