Bug 153750

Summary: Add command line flag to DRT to output the number of tests completed in server mode
Product: WebKit Reporter: Brady Eidson <beidson>
Component: Tools / TestsAssignee: Brady Eidson <beidson>
Status: ASSIGNED ---    
Severity: Normal CC: ap, lforschler
Priority: P2    
Version: Safari 9   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch v1 darin: review+, beidson: commit-queue?

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"?