Add a fix for old, broken devices.

Not sure exactly why this happens, but it keeps cropping up on my JB
nakasi when running the NDK tests.

Change-Id: Ic5c35f9ab01c0a83f98a6d074220c89ec765a812
This commit is contained in:
Dan Albert
2016-02-24 11:39:42 -08:00
parent 5ca14aa777
commit aaf5455b16

View File

@@ -225,9 +225,10 @@ class AndroidDevice(object):
_RETURN_CODE_PROBE = [';', 'echo', '{0}$?'.format(_RETURN_CODE_DELIMITER)]
# Maximum search distance from the output end to find the delimiter.
# adb on Windows returns \r\n even if adbd returns \n.
# adb on Windows returns \r\n even if adbd returns \n. Some old devices
# seem to actually return \r\r\n.
_RETURN_CODE_SEARCH_LENGTH = len(
'{0}255\r\n'.format(_RETURN_CODE_DELIMITER))
'{0}255\r\r\n'.format(_RETURN_CODE_DELIMITER))
# Feature name strings.
SHELL_PROTOCOL_FEATURE = 'shell_v2'