WebKit Bugzilla
Attachment 346424 Details for
Bug 188280
: Explain test name matching in run-api-tests help
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-188280-20180802154351.patch (text/plain), 1.86 KB, created by
Jonathan Bedard
on 2018-08-02 15:43:52 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jonathan Bedard
Created:
2018-08-02 15:43:52 PDT
Size:
1.86 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 234520) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,16 @@ >+2018-08-02 Jonathan Bedard <jbedard@apple.com> >+ >+ Explain test name matching in run-api-tests help >+ https://bugs.webkit.org/show_bug.cgi?id=188280 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Improve the run-api-tests help message to explain how test >+ name matching works. >+ >+ * Scripts/webkitpy/api_tests/run_api_tests.py: >+ (parse_args): >+ > 2018-08-02 Sihui Liu <sihui_liu@apple.com> > > [Cocoa] setCookie API fails to set session cookies for defaultDataStore if processPool created but not used >Index: Tools/Scripts/webkitpy/api_tests/run_api_tests.py >=================================================================== >--- Tools/Scripts/webkitpy/api_tests/run_api_tests.py (revision 234514) >+++ Tools/Scripts/webkitpy/api_tests/run_api_tests.py (working copy) >@@ -122,7 +122,13 @@ def parse_args(args): > help='Run a separate process for each test'), > ])) > >- option_parser = optparse.OptionParser(usage='%prog [options] [<path>...]') >+ option_parser = optparse.OptionParser( >+ usage='run-api-tests [options] [<test names>...]', >+ description='By default, run-api-tests will run all API tests. It also allows the user to specify tests of the ' + >+ 'format <binary>.<suite>.<test> or <suite>.<test>. Note that in the case where a binary is not ' + >+ 'specified, one will be infered by listing available tests. Specifying a just a binary or just a ' + >+ 'suite will cause every test under that umberella to be run.', >+ ) > > for group_name, group_options in option_group_definitions: > option_group = optparse.OptionGroup(option_parser, group_name)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 188280
:
346424
|
346466
|
347553
|
347744
|
347925