Title: [126138] trunk/Tools
- Revision
- 126138
- Author
- [email protected]
- Date
- 2012-08-20 23:50:57 -0700 (Mon, 20 Aug 2012)
Log Message
[Chromium-Android] Add stop_when_done parameter to ChromiumAndroidDriver.run_test()
https://bugs.webkit.org/show_bug.cgi?id=94558
Reviewed by Dirk Pranke.
* Scripts/webkitpy/layout_tests/port/chromium_android.py:
(ChromiumAndroidDriver.run_test):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (126137 => 126138)
--- trunk/Tools/ChangeLog 2012-08-21 06:50:42 UTC (rev 126137)
+++ trunk/Tools/ChangeLog 2012-08-21 06:50:57 UTC (rev 126138)
@@ -1,3 +1,13 @@
+2012-08-20 Xianzhu Wang <[email protected]>
+
+ [Chromium-Android] Add stop_when_done parameter to ChromiumAndroidDriver.run_test()
+ https://bugs.webkit.org/show_bug.cgi?id=94558
+
+ Reviewed by Dirk Pranke.
+
+ * Scripts/webkitpy/layout_tests/port/chromium_android.py:
+ (ChromiumAndroidDriver.run_test):
+
2012-08-20 Ryosuke Niwa <[email protected]>
Cleanup TestExpectationParser.parse
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py (126137 => 126138)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py 2012-08-21 06:50:42 UTC (rev 126137)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py 2012-08-21 06:50:57 UTC (rev 126138)
@@ -551,13 +551,13 @@
not self._file_exists_on_device(self._out_fifo_path) and
not self._file_exists_on_device(self._err_fifo_path))
- def run_test(self, driver_input):
+ def run_test(self, driver_input, stop_when_done):
base = self._port.lookup_virtual_test_base(driver_input.test_name)
if base:
driver_input = copy.copy(driver_input)
driver_input.args = self._port.lookup_virtual_test_args(driver_input.test_name)
driver_input.test_name = base
- return super(ChromiumAndroidDriver, self).run_test(driver_input)
+ return super(ChromiumAndroidDriver, self).run_test(driver_input, stop_when_done)
def start(self, pixel_tests, per_test_args):
# Only one driver instance is allowed because of the nature of Android activity.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes