Title: [149046] trunk/Tools
Revision
149046
Author
[email protected]
Date
2013-04-24 10:07:01 -0700 (Wed, 24 Apr 2013)

Log Message

Remove the Chromium-specific helper from run_webkit_tests.py
https://bugs.webkit.org/show_bug.cgi?id=114996

Patch by Seokju Kwon <[email protected]> on 2013-04-24
Reviewed by Dirk Pranke.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (149045 => 149046)


--- trunk/Tools/ChangeLog	2013-04-24 16:12:04 UTC (rev 149045)
+++ trunk/Tools/ChangeLog	2013-04-24 17:07:01 UTC (rev 149046)
@@ -1,3 +1,13 @@
+2013-04-24  Seokju Kwon  <[email protected]>
+
+        Remove the Chromium-specific helper from run_webkit_tests.py
+        https://bugs.webkit.org/show_bug.cgi?id=114996
+
+        Reviewed by Dirk Pranke.
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+        (parse_args):
+
 2013-04-24  Sergio Correia  <[email protected]>
 
         [EFL][WK2]: Fix WKViewClientWebProcessCallbacks WK2 API test

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py (149045 => 149046)


--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2013-04-24 16:12:04 UTC (rev 149045)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py	2013-04-24 17:07:01 UTC (rev 149046)
@@ -99,16 +99,6 @@
     option_group_definitions.append(("Configuration options", configuration_options()))
     option_group_definitions.append(("Printing Options", printing.print_options()))
 
-    # FIXME: These options should move onto the ChromiumPort.
-    option_group_definitions.append(("Chromium-specific Options", [
-        optparse.make_option("--nocheck-sys-deps", action=""
-            default=False,
-            help="Don't check the system dependencies (themes)"),
-        optparse.make_option("--adb-device",
-            action="" default=[],
-            help="Run Android layout tests on these devices."),
-    ]))
-
     option_group_definitions.append(("EFL-specific Options", [
         optparse.make_option("--webprocess-cmd-prefix", type="string",
             default=False, help="Prefix used when spawning the Web process (Debug mode only)"),
@@ -203,6 +193,10 @@
         optparse.make_option("--ignore-metrics", action="" dest="ignore_metrics",
             default=False, help="Ignore rendering metrics related information from test "
             "output, only compare the structure of the rendertree."),
+        optparse.make_option("--nocheck-sys-deps", action=""
+            default=False,
+            help="Don't check the system dependencies (themes)"),
+
     ]))
 
     option_group_definitions.append(("Testing Options", [
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to