Title: [111122] trunk/Tools
Revision
111122
Author
[email protected]
Date
2012-03-17 11:12:10 -0700 (Sat, 17 Mar 2012)

Log Message

Unreviewed; fix webkitpy unit test failures after r111116.

It turns out that cmd_line in the patch in bug 80025 had the right
signature when it was submitted, but r109242 added a few more
required parameters, and since the method (and EflDriver) did not
exist at the time we ended up committing a broken method.

* Scripts/webkitpy/layout_tests/port/efl.py:
(EflDriver.cmd_line): Add the `pixel_tests' and `per_test_args'
arguments.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (111121 => 111122)


--- trunk/Tools/ChangeLog	2012-03-17 15:45:23 UTC (rev 111121)
+++ trunk/Tools/ChangeLog	2012-03-17 18:12:10 UTC (rev 111122)
@@ -1,3 +1,16 @@
+2012-03-17  Raphael Kubo da Costa  <[email protected]>
+
+        Unreviewed; fix webkitpy unit test failures after r111116.
+
+        It turns out that cmd_line in the patch in bug 80025 had the right
+        signature when it was submitted, but r109242 added a few more
+        required parameters, and since the method (and EflDriver) did not
+        exist at the time we ended up committing a broken method.
+
+        * Scripts/webkitpy/layout_tests/port/efl.py:
+        (EflDriver.cmd_line): Add the `pixel_tests' and `per_test_args'
+        arguments.
+
 2012-03-17  Charles Wei  <[email protected]>
 
         [BlackBerry] Enable Web Timing for performance profiling and improvement.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py (111121 => 111122)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py	2012-03-17 15:45:23 UTC (rev 111121)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py	2012-03-17 18:12:10 UTC (rev 111122)
@@ -38,9 +38,9 @@
 
 
 class EflDriver(WebKitDriver):
-    def cmd_line(self):
+    def cmd_line(self, pixel_tests, per_test_args):
         wrapper_path = self._port.path_from_webkit_base("Tools", "efl", "run-with-jhbuild")
-        return [wrapper_path] + WebKitDriver.cmd_line(self)
+        return [wrapper_path] + WebKitDriver.cmd_line(self, pixel_tests, per_test_args)
 
 
 class EflPort(WebKitPort):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to