Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py

Issue 2811993002: [devil refactor] Prepare clients for DeviceUnreachableError (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/tombstones.py ('k') | tools/cygprofile/profile_android_startup.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
index 1369b7494b0c503e50234b8857d022b1133919c8..1a830a3572d87bb4b050c84c348265b7935fdbd8 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
@@ -793,7 +793,8 @@ class ChromiumAndroidDriver(driver.Driver):
log_callback('installing apk if necessary')
self._device.Install(driver_host_path)
except (device_errors.CommandFailedError,
- device_errors.CommandTimeoutError) as exc:
+ device_errors.CommandTimeoutError,
+ device_errors.DeviceUnreachableError) as exc:
self._abort('Failed to install %s onto device: %s' % (driver_host_path, str(exc)))
def _push_fonts(self, log_callback):
« no previous file with comments | « build/android/tombstones.py ('k') | tools/cygprofile/profile_android_startup.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698