Chromium Code Reviews| Index: build/android/pylib/local/device/local_device_gtest_run.py |
| diff --git a/build/android/pylib/local/device/local_device_gtest_run.py b/build/android/pylib/local/device/local_device_gtest_run.py |
| index e2c6a882e2fd1016b7d35cd3df0f3e1038ab5f72..2e0f98ecdc64eec4b656782198794f93a1a64faf 100644 |
| --- a/build/android/pylib/local/device/local_device_gtest_run.py |
| +++ b/build/android/pylib/local/device/local_device_gtest_run.py |
| @@ -382,6 +382,7 @@ class LocalDeviceGtestRun(local_device_test_run.LocalDeviceTestRun): |
| flags = self._test_instance.test_arguments or '' |
| if self._test_instance.enable_xml_result_parsing: |
| flags += ' --gtest_output=xml:%s' % device_tmp_results_file.name |
| + flags += ' --gtest_also_run_disabled_tests' |
|
jbudorick
2016/11/30 23:17:11
I don't think we should always be adding this.
shenghuazhang
2016/11/30 23:52:44
Done.
|
| output = self._delegate.Run( |
| test, device, flags=flags, |