Skip to content

Commit

Permalink
test: report timeout in TapReporter
Browse files Browse the repository at this point in the history
  • Loading branch information
skomski committed Sep 2, 2015
1 parent e3740e4 commit f79f171
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,10 @@ def HasRun(self, output):
if FLAKY in output.test.outcomes and self.flaky_tests_mode == DONTCARE:
status_line = status_line + ' # TODO : Fix flaky test'
logger.info(status_line)

if output.HasTimedOut():
logger.info('# TIMEOUT')

for l in output.output.stderr.splitlines():
logger.info('#' + l)
for l in output.output.stdout.splitlines():
Expand Down

0 comments on commit f79f171

Please sign in to comment.