diff options
author | mikecase <mikecase@chromium.org> | 2015-10-14 14:57:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-14 21:58:23 +0000 |
commit | 69fde2cf4bacbfc82de8a3ef6243645b7c948476 (patch) | |
tree | 17fff71bd346c2435eaa78de29624054da39e467 /build | |
parent | 1071919b3c990d7896b60ea2539a91196d7ebcce (diff) | |
download | chromium_src-69fde2cf4bacbfc82de8a3ef6243645b7c948476.zip chromium_src-69fde2cf4bacbfc82de8a3ef6243645b7c948476.tar.gz chromium_src-69fde2cf4bacbfc82de8a3ef6243645b7c948476.tar.bz2 |
[Android] Removed unnecessary only_output_failures field.
The bug preventing us from outputting passed tests was fixed.
This field does nothing anymore except prints out "See logcat
for more results information" which isn't really neccessary
anymore.
BUG=
Review URL: https://codereview.chromium.org/1390933007
Cr-Commit-Position: refs/heads/master@{#354125}
Diffstat (limited to 'build')
-rw-r--r-- | build/android/pylib/remote/device/remote_device_environment.py | 5 | ||||
-rw-r--r-- | build/android/pylib/remote/device/remote_device_gtest_run.py | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/build/android/pylib/remote/device/remote_device_environment.py b/build/android/pylib/remote/device/remote_device_environment.py index 97c1e59..7730a98 100644 --- a/build/android/pylib/remote/device/remote_device_environment.py +++ b/build/android/pylib/remote/device/remote_device_environment.py @@ -330,11 +330,6 @@ class RemoteDeviceEnvironment(environment.Environment): return self._network_config @property - def only_output_failures(self): # pylint: disable=no-self-use - # TODO(jbudorick): Remove this once b/18981674 is fixed. - return True - - @property def results_path(self): return self._results_path diff --git a/build/android/pylib/remote/device/remote_device_gtest_run.py b/build/android/pylib/remote/device/remote_device_gtest_run.py index ebbf10b..33850f8 100644 --- a/build/android/pylib/remote/device/remote_device_gtest_run.py +++ b/build/android/pylib/remote/device/remote_device_gtest_run.py @@ -75,8 +75,6 @@ class RemoteDeviceGtestTestRun(remote_device_test_run.RemoteDeviceTestRun): if l.startswith(self._INSTRUMENTATION_STREAM_LEADER)) results_list = self._test_instance.ParseGTestOutput(output) results.AddResults(results_list) - if self._env.only_output_failures: - logging.info('See logcat for more results information.') self._DetectPlatformErrors(results) return results |