Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e8b1456

Browse filesBrowse files
gibfahnevanlucas
authored andcommitted
test: change duration_ms to duration
The test script (tools/test.py) logs duration as "duration_ms: x.y". This is confusing (as the duration is measured in seconds). New example output: duration: 0.212s PR-URL: #7133 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent 865644a commit e8b1456
Copy full SHA for e8b1456

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎tools/test.py‎

Copy file name to clipboardExpand all lines: tools/test.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def HasRun(self, output):
310310
(duration.seconds + duration.days * 24 * 3600) * 10**6) / 10**6
311311

312312
logger.info(' ---')
313-
logger.info(' duration_ms: %d.%d' % (total_seconds, duration.microseconds / 1000))
313+
logger.info(' duration: %d.%ds' % (total_seconds, duration.microseconds / 1000))
314314
logger.info(' ...')
315315

316316
def Done(self):

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.