(self, output)
| 281 | sys.stdout.flush() |
| 282 | |
| 283 | def HasRun(self, output): |
| 284 | if output.UnexpectedOutput(): |
| 285 | if output.HasCrashed(): |
| 286 | outcome = 'CRASH' |
| 287 | else: |
| 288 | outcome = 'FAIL' |
| 289 | else: |
| 290 | outcome = 'pass' |
| 291 | print('Done running %s: %s' % (output.test.GetLabel(), outcome)) |
| 292 | |
| 293 | |
| 294 | class DotsProgressIndicator(SimpleProgressIndicator): |
nothing calls this directly
no test coverage detected