Skip to content

Commit

Permalink
test: add note about duration_ms in TAP reporter
Browse files Browse the repository at this point in the history
PR-URL: #7216
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
  • Loading branch information
rvagg authored and evanlucas committed Jun 15, 2016
1 parent 798a737 commit 257f4e6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/test.py
Expand Up @@ -309,6 +309,8 @@ def HasRun(self, output):
total_seconds = (duration.microseconds +
(duration.seconds + duration.days * 24 * 3600) * 10**6) / 10**6

# duration_ms is measured in seconds and is read as such by TAP parsers.
# It should read as "duration including ms" rather than "duration in ms"
logger.info(' ---')
logger.info(' duration_ms: %d.%d' % (total_seconds, duration.microseconds / 1000))
logger.info(' ...')
Expand Down

0 comments on commit 257f4e6

Please sign in to comment.