Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: build/android/pylib/local/device/local_device_gtest_run.py

Issue 2544603002: [Android] Add '--gtest_also_run_disabled_tests' logic in gtest runner (Closed)
Patch Set: disabled_prefixes Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698