Increase install time timeout

The media CTS test apk is quite large, causing installation to often
take (much) longer than the 20 second timeout that runtest uses.
Increasing it to 60 seconds fixes the issue.

Change-Id: I43cc1e094a29f8b1bd18e8f27ff53e183664f2bb
This commit is contained in:
Marco Nelissen
2014-12-03 11:27:55 -08:00
parent 9c9f8113b4
commit 1afdaba4e4

View File

@@ -51,7 +51,7 @@ class AdbInterface:
"""Direct all future commands to Android target with the given serial.""" """Direct all future commands to Android target with the given serial."""
self._target_arg = "-s %s" % serial self._target_arg = "-s %s" % serial
def SendCommand(self, command_string, timeout_time=20, retry_count=3): def SendCommand(self, command_string, timeout_time=60, retry_count=3):
"""Send a command via adb. """Send a command via adb.
Args: Args: