summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Eubanks <aeubanks@google.com>2017-07-14 20:03:43 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-14 20:03:43 +0000
commit990693c4b81fe9c46fb0cde2d3cf50bba662733c (patch)
tree11b12749a993df8d1ae67269d8d31e1a8d3dc62f
parent83e8bcbaac68c92be03013ddc4d136ef089ad5f3 (diff)
parent2a93c1b92e2dc2253cf39111dacb505c15150f1b (diff)
downloadrs-990693c4b81fe9c46fb0cde2d3cf50bba662733c.tar.gz
Merge "Display install APK error message if fail" am: a966f37719
am: 2a93c1b92e Change-Id: Idc26cc118de59f77243d7399406e942f93dd56ac
-rw-r--r--tests/lldb/tests/harness/util_bundle.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lldb/tests/harness/util_bundle.py b/tests/lldb/tests/harness/util_bundle.py
index 3f140946..68954cb2 100644
--- a/tests/lldb/tests/harness/util_bundle.py
+++ b/tests/lldb/tests/harness/util_bundle.py
@@ -195,7 +195,8 @@ class UtilBundle(object):
output = self._android.adb(cmd, False, True,
util_constants.PUSH_TIMEOUT)
if ('Success' not in output) or ("can't find" in output):
- raise TestSuiteException('unable to install app ' + app)
+ raise TestSuiteException('unable to install app {}: {}'.format(
+ app, output))
def _push_all_java(self):
'''Push all apk files to the device.