Bug 153750 - Add command line flag to DRT to output the number of tests completed in server mode
Summary: Add command line flag to DRT to output the number of tests completed in serve...
Status: ASSIGNED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: Safari 9
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Brady Eidson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-02-01 10:18 PST by Brady Eidson
Modified: 2016-02-01 10:27 PST (History)
2 users (show)

See Also:


Attachments
Patch v1 (2.25 KB, patch)
2016-02-01 10:19 PST, Brady Eidson
darin: review+
beidson: commit-queue?
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Brady Eidson 2016-02-01 10:18:04 PST
Add command line flag to DRT to output the number of tests completed in server mode

This won't change default behavior/output, and will just help folks who call DRT directly on the command land with large batches of tests (like myself)
Comment 1 Brady Eidson 2016-02-01 10:19:41 PST
Created attachment 270398 [details]
Patch v1
Comment 2 Darin Adler 2016-02-01 10:27:00 PST
Comment on attachment 270398 [details]
Patch v1

View in context: https://bugs.webkit.org/attachment.cgi?id=270398&action=review

> Tools/DumpRenderTree/mac/DumpRenderTree.mm:1182
> +    uint64_t testCount = 0;

We might run more than 2^32 tests? How about just "unsigned" and "%u"?