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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/driver.py

Issue 27046003: Handle content_shell failing to start on android as device going offline. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
Index: Tools/Scripts/webkitpy/layout_tests/port/driver.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/driver.py b/Tools/Scripts/webkitpy/layout_tests/port/driver.py
index 404a5be29f22b3cb03fea5e5e62707eaa6e1089e..9846a46b2ce7f2908fc97bfb8f38f96be512605a 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/driver.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/driver.py
@@ -82,6 +82,10 @@ class DriverOutput(object):
return bool(self.error)
+class DeviceOffline(Exception):
+ pass
+
+
class Driver(object):
"""object for running test(s) using content_shell or other driver."""

Powered by Google App Engine
This is Rietveld 408576698