Index: build/android/devil/android/device_utils.py |
diff --git a/build/android/devil/android/device_utils.py b/build/android/devil/android/device_utils.py |
index e9d16935ad2fc307b406fb5e8e45b5b7decf4993..719add03f0810f3df0efc511501a3af1b6e352c8 100644 |
--- a/build/android/devil/android/device_utils.py |
+++ b/build/android/devil/android/device_utils.py |
@@ -936,7 +936,14 @@ class DeviceUtils(object): |
for k, v in extras.iteritems(): |
cmd.extend(['-e', str(k), str(v)]) |
cmd.append(component) |
- return self.RunShellCommand(cmd, check_return=True, large_output=True) |
+ |
+ # Store the package name in a shell variable to help the command stay under |
+ # the _MAX_ADB_COMMAND_LENGTH limit. |
+ package = component.split('/')[0] |
+ shell_snippet = 'p=%s;%s' % (package, |
+ cmd_helper.ShrinkToSnippet(cmd, 'p', package)) |
jbudorick
2015/10/08 20:55:39
Hrm, I was thinking something more along the lines
agrieve
2015/10/09 00:08:29
The helper is quite limiting already since it can
jbudorick
2015/10/14 17:59:09
Fair enough; I'm ok with landing this as-is and it
|
+ return self.RunShellCommand(shell_snippet, check_return=True, |
+ large_output=True) |
@decorators.WithTimeoutAndRetriesFromInstance() |
def BroadcastIntent(self, intent_obj, timeout=None, retries=None): |