From 1afdaba4e4ecdc9b41ee3e88525079f44e058034 Mon Sep 17 00:00:00 2001 From: Marco Nelissen Date: Wed, 3 Dec 2014 11:27:55 -0800 Subject: [PATCH] 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 --- testrunner/adb_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testrunner/adb_interface.py b/testrunner/adb_interface.py index dc43a938d..fdbcb784e 100755 --- a/testrunner/adb_interface.py +++ b/testrunner/adb_interface.py @@ -51,7 +51,7 @@ class AdbInterface: """Direct all future commands to Android target with the given 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. Args: