| Index: build/android/pylib/gtest/local_device_gtest_run.py
|
| diff --git a/build/android/pylib/gtest/local_device_gtest_run.py b/build/android/pylib/gtest/local_device_gtest_run.py
|
| index c48c8659ed9672049c0260336ea372be86743169..ff12d82ad9c8c2900c56365b431aae9c717c61c4 100644
|
| --- a/build/android/pylib/gtest/local_device_gtest_run.py
|
| +++ b/build/android/pylib/gtest/local_device_gtest_run.py
|
| @@ -112,12 +112,7 @@ class _ExeDelegate(object):
|
| return output
|
|
|
| def Clear(self, device):
|
| - try:
|
| - device.KillAll(self._exe_file_name, blocking=True, timeout=30, retries=0)
|
| - except device_errors.CommandFailedError:
|
| - # Raised if there is no process with the given name, which in this case
|
| - # is all we care about.
|
| - pass
|
| + device.KillAll(self._exe_file_name, blocking=True, timeout=30, quiet=True)
|
|
|
|
|
| class LocalDeviceGtestRun(local_device_test_run.LocalDeviceTestRun):
|
|
|