Title: [223429] trunk/Tools
Revision
223429
Author
commit-qu...@webkit.org
Date
2017-10-16 13:27:20 -0700 (Mon, 16 Oct 2017)

Log Message

run-webkit-tests help text should mention arguments too
https://bugs.webkit.org/show_bug.cgi?id=178352

Patch by Ross Kirsling <ross.kirsl...@sony.com> on 2017-10-16
Reviewed by Tim Horton.

* Scripts/webkitpy/layout_tests/run_webkit_tests.py:
(parse_args):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (223428 => 223429)


--- trunk/Tools/ChangeLog	2017-10-16 20:25:29 UTC (rev 223428)
+++ trunk/Tools/ChangeLog	2017-10-16 20:27:20 UTC (rev 223429)
@@ -1,3 +1,13 @@
+2017-10-16  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        run-webkit-tests help text should mention arguments too
+        https://bugs.webkit.org/show_bug.cgi?id=178352
+
+        Reviewed by Tim Horton.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+        (parse_args):
+
 2017-10-16  Maureen Daum  <md...@apple.com>
 
         If we fail to delete any database file, don't remove its information from the tracker database

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py (223428 => 223429)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2017-10-16 20:25:29 UTC (rev 223428)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2017-10-16 20:27:20 UTC (rev 223429)
@@ -343,7 +343,7 @@
             help=("If specified, tests are allowed to make requests to the specified hostname."))
     ]))
 
-    option_parser = optparse.OptionParser()
+    option_parser = optparse.OptionParser(usage="%prog [options] [<path>...]")
 
     for group_name, group_options in option_group_definitions:
         option_group = optparse.OptionGroup(option_parser, group_name)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to