summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGaurav Mishra <mishragaurav@google.com>2016-10-18 11:17:41 +0100
committerGaurav Mishra <mishragaurav@google.com>2016-10-18 11:17:41 +0100
commitd82b1f65ec9b41a37a23133ce90ed55af0fb60b9 (patch)
tree274f54caea1abc2abb0fb22a58b19a97343db857 /tools
parent6f7e06272c3f1bfa369bde5d106d8bbb0bceffde (diff)
downloadplatform_cts-d82b1f65ec9b41a37a23133ce90ed55af0fb60b9.tar.gz
platform_cts-d82b1f65ec9b41a37a23133ce90ed55af0fb60b9.tar.bz2
platform_cts-d82b1f65ec9b41a37a23133ce90ed55af0fb60b9.zip
Use CollectorUtil functions in ReportLogCollector.
Merge change from mr1 to fix unreliable adb pull. Bug:29586512 Change-Id: I1f9a1f2e3ed19f17a1f29b33db298564da306273
Diffstat (limited to 'tools')
-rw-r--r--tools/tradefed-host/src/com/android/cts/tradefed/util/ReportLogUtil.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/tradefed-host/src/com/android/cts/tradefed/util/ReportLogUtil.java b/tools/tradefed-host/src/com/android/cts/tradefed/util/ReportLogUtil.java
index 6ab175f831f..9233a4aa115 100644
--- a/tools/tradefed-host/src/com/android/cts/tradefed/util/ReportLogUtil.java
+++ b/tools/tradefed-host/src/com/android/cts/tradefed/util/ReportLogUtil.java
@@ -43,7 +43,6 @@ public class ReportLogUtil{
// Delete earlier report logs if present on device.
String command = String.format("adb -s %s shell rm -rf %s", device.getSerialNumber(),
SRC_DIR);
- CLog.e(command);
if (device.doesFileExist(SRC_DIR)) {
Process process = Runtime.getRuntime().exec(new String[]{"/bin/bash", "-c",
command});