Index: build/android/pylib/local/device/local_device_instrumentation_test_run.py |
diff --git a/build/android/pylib/local/device/local_device_instrumentation_test_run.py b/build/android/pylib/local/device/local_device_instrumentation_test_run.py |
index 3adced357ef8cb6a9acfed93c4a038ce48a8051f..d3e636e20dff957d141e161ffa6a5d00c3939459 100644 |
--- a/build/android/pylib/local/device/local_device_instrumentation_test_run.py |
+++ b/build/android/pylib/local/device/local_device_instrumentation_test_run.py |
@@ -380,8 +380,9 @@ class LocalDeviceInstrumentationTestRun( |
if self._test_instance.coverage_directory: |
device.PullFile(coverage_directory, |
self._test_instance.coverage_directory) |
- device.RunShellCommand('rm -f %s' % os.path.join(coverage_directory, |
- '*')) |
+ device.RunShellCommand( |
+ 'rm -f %s' % posixpath.join(coverage_directory, '*'), |
+ check_return=True, shell=True) |
perezju
2017/03/20 15:22:58
This appears to be sort of common-ish, wondering w
jbudorick
2017/03/20 15:27:02
Maybe an addition to https://codesearch.chromium.o
|
if self._test_instance.store_tombstones: |
tombstones_url = None |
for result in results: |
@@ -435,4 +436,3 @@ class LocalDeviceInstrumentationTestRun( |
timeout *= cls._GetTimeoutScaleFromAnnotations(annotations) |
return timeout |
- |