1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-04-04 17:00:03 +01:00

utils/android: better error message when exit code not detected

Include the stdout/stderr output in the message of the exception raised
when the exit code of the adb command cannot be detected.
This commit is contained in:
Sergei Trofimov 2017-07-12 13:44:47 +01:00
parent b933dbda67
commit 85036fbb30

View File

@ -381,8 +381,9 @@ def adb_shell(device, command, timeout=None, check_exit_code=False,
raise TargetError(message.format(re_search[0]))
else:
message = 'adb has returned early; did not get an exit code. '\
'Was kill-server invoked?'
raise TargetError(message)
'Was kill-server invoked?\nOUTPUT:\n-----\n{}\n'\
'-----\nERROR:\n-----\n{}\n-----'
raise TargetError(message.format(raw_output, error))
return output