Chromium Code Reviews| Index: tests/stub-generator/testcfg.py |
| =================================================================== |
| --- tests/stub-generator/testcfg.py (revision 1134) |
| +++ tests/stub-generator/testcfg.py (working copy) |
| @@ -39,6 +39,9 @@ |
| (interface, _, implementation) = interface.partition('+') |
| return (interface, classes, implementation) |
| + def IsFailureOutput(self, output): |
| + return output.exit_code != 0 or not '##DONE##' in output.stdout |
| + |
| def BeforeRun(self): |
| if not self.context.generate: |
| return |