Title: [281649] trunk/Tools
Revision
281649
Author
[email protected]
Date
2021-08-26 13:39:00 -0700 (Thu, 26 Aug 2021)

Log Message

Add to run-webkit-tests a --expect-pass argument as a synonym for --force
https://bugs.webkit.org/show_bug.cgi?id=229581

Reviewed by Wenson Hsieh.

I am eternally confused that -f and --force are different things. Add --expect-pass
as a synonym for --force to reduce my confusion.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (281648 => 281649)


--- trunk/Tools/ChangeLog	2021-08-26 20:21:27 UTC (rev 281648)
+++ trunk/Tools/ChangeLog	2021-08-26 20:39:00 UTC (rev 281649)
@@ -1,3 +1,16 @@
+2021-08-26  Simon Fraser  <[email protected]>
+
+        Add to run-webkit-tests a --expect-pass argument as a synonym for --force
+        https://bugs.webkit.org/show_bug.cgi?id=229581
+
+        Reviewed by Wenson Hsieh.
+
+        I am eternally confused that -f and --force are different things. Add --expect-pass
+        as a synonym for --force to reduce my confusion.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+        (parse_args):
+
 2021-08-26  Wenson Hsieh  <[email protected]>
 
         TestWebKitAPI._WKActivatedElementInfo.InfoForRotatedImage is failing on iOS 15

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py (281648 => 281649)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2021-08-26 20:21:27 UTC (rev 281648)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2021-08-26 20:39:00 UTC (rev 281649)
@@ -258,7 +258,7 @@
                  "'ignore' == Run them anyway, "
                  "'only' == only run the SKIP tests, "
                  "'always' == always skip, even if listed on the command line.")),
-        optparse.make_option("--force", action="" default=False,
+        optparse.make_option("--expect-pass", "--force", action="" default=False, dest="force",
             help="Run all tests with PASS as expected result, even those marked SKIP in the test list or " + \
                  "those which are device-specific (implies --skipped=ignore)"),
         optparse.make_option("--time-out-ms", "--timeout",
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to