Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(705)

Unified Diff: build/android/pylib/device/device_utils.py

Issue 867073002: [Android] Add a java version of the test server spawner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: findbugs Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/pylib/gtest/local_device_gtest_run.py » ('j') | build/config/android/rules.gni » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/device/device_utils.py
diff --git a/build/android/pylib/device/device_utils.py b/build/android/pylib/device/device_utils.py
index a4c3a8b9bde43f1bc9abce3a0a91966cb3069923..805df6517eb6580ebd43d9d2091a8401935709fa 100644
--- a/build/android/pylib/device/device_utils.py
+++ b/build/android/pylib/device/device_utils.py
@@ -587,7 +587,7 @@ class DeviceUtils(object):
if raw:
cmd.append('-r')
for k, v in extras.iteritems():
- cmd.extend(['-e', k, v])
+ cmd.extend(['-e', str(k), str(v)])
cmd.append(component)
return self.RunShellCommand(cmd, check_return=True)
« no previous file with comments | « no previous file | build/android/pylib/gtest/local_device_gtest_run.py » ('j') | build/config/android/rules.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698