summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authornavabi@google.com <navabi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-24 18:27:26 +0000
committernavabi@google.com <navabi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-24 18:27:26 +0000
commit79c9c53e131068c01927249f6f15ed9079579c13 (patch)
tree09d3293d7c870943a3d141dfa8223ca7b8619434 /build
parentc20f9c258cebd67bf4d6c65e5926b7d44b959c57 (diff)
downloadchromium_src-79c9c53e131068c01927249f6f15ed9079579c13.zip
chromium_src-79c9c53e131068c01927249f6f15ed9079579c13.tar.gz
chromium_src-79c9c53e131068c01927249f6f15ed9079579c13.tar.bz2
Print the serial number of the device that timed out.
Many of our bots have multiple devices. Specify the device that timed out. BUG=242237 Review URL: https://chromiumcodereview.appspot.com/15956002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202127 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/android/pylib/android_commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py
index d5d6e15..d273cb9 100644
--- a/build/android/pylib/android_commands.py
+++ b/build/android/pylib/android_commands.py
@@ -386,7 +386,8 @@ class AndroidCommands(object):
return install_status
except errors.WaitForResponseTimedOutError:
print '@@@STEP_WARNINGS@@@'
- logging.info('Timeout on installing %s' % apk_path)
+ logging.info('Timeout on installing %s on device %s', apk_path,
+ self._device)
if reboots_left <= 0:
raise Exception('Install failure')