Title: [125726] trunk/Tools
Revision
125726
Author
[email protected]
Date
2012-08-15 17:38:07 -0700 (Wed, 15 Aug 2012)

Log Message

[Chromium-Android] DumpRenderTree timeouts before NRWT timeouts
https://bugs.webkit.org/show_bug.cgi?id=94155

Reviewed by Dirk Pranke.

* Scripts/webkitpy/layout_tests/port/chromium_android.py:
(ChromiumAndroidPort.create_driver): Force no_timeout=True

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (125725 => 125726)


--- trunk/Tools/ChangeLog	2012-08-16 00:18:46 UTC (rev 125725)
+++ trunk/Tools/ChangeLog	2012-08-16 00:38:07 UTC (rev 125726)
@@ -1,3 +1,13 @@
+2012-08-15  Xianzhu Wang  <[email protected]>
+
+        [Chromium-Android] DumpRenderTree timeouts before NRWT timeouts
+        https://bugs.webkit.org/show_bug.cgi?id=94155
+
+        Reviewed by Dirk Pranke.
+
+        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
+        (ChromiumAndroidPort.create_driver): Force no_timeout=True
+
 2012-08-15  Ryosuke Niwa  <[email protected]>
 
         Add a hyperlink to perf-o-matic from build.webkit.org/root.html

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py (125725 => 125726)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-08-16 00:18:46 UTC (rev 125725)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-08-16 00:38:07 UTC (rev 125726)
@@ -262,7 +262,9 @@
     def create_driver(self, worker_number, no_timeout=False):
         # We don't want the default DriverProxy which is not compatible with our driver.
         # See comments in ChromiumAndroidDriver.start().
-        return ChromiumAndroidDriver(self, worker_number, pixel_tests=self.get_option('pixel_tests'), no_timeout=no_timeout)
+        return ChromiumAndroidDriver(self, worker_number, pixel_tests=self.get_option('pixel_tests'),
+                                     # Force no timeout to avoid DumpRenderTree timeouts before NRWT.
+                                     no_timeout=True)
 
     def driver_cmd_line(self):
         # Override to return the actual DumpRenderTree command line.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to