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

Unified Diff: third_party/android_testrunner/adb_interface.py

Issue 20210002: [Android] Sets up a coverage system for java using EMMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes gsutil upload Created 7 years, 4 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
Index: third_party/android_testrunner/adb_interface.py
diff --git a/third_party/android_testrunner/adb_interface.py b/third_party/android_testrunner/adb_interface.py
index b8f740b2f01b2e31e13cb84c1ed6c95af02b41a3..8c96876a03e3ae15bce8bd580fd6b05269fe6a96 100644
--- a/third_party/android_testrunner/adb_interface.py
+++ b/third_party/android_testrunner/adb_interface.py
@@ -125,7 +125,7 @@ class AdbInterface:
os.makedirs(os.path.dirname(dest))
if self.DoesFileExist(src):
- self.SendCommand("pull %s %s" % (src, dest), timeout_time=60)
+ print 'Command output:', self.SendCommand("pull %s %s" % (src, dest), timeout_time=60)
return True
else:
logger.Log("ADB Pull Failed: Source file %s does not exist." % src)

Powered by Google App Engine
This is Rietveld 408576698