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

Unified Diff: build/android/pylib/utils/report_results.py

Issue 15942016: Creates a new test running script test_runner.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renames run_all_tests.py to test_runner.py Created 7 years, 6 months 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/utils/report_results.py
diff --git a/build/android/pylib/utils/report_results.py b/build/android/pylib/utils/report_results.py
index 83b80de132b53fa1996af8cb91512fd49e1bb86b..ca30acade10d61f2f7163c8c3bccfff223ff480e 100644
--- a/build/android/pylib/utils/report_results.py
+++ b/build/android/pylib/utils/report_results.py
@@ -43,7 +43,7 @@ def _LogToFlakinessDashboard(results, test_type, test_package,
(test_type, test_package, flakiness_server))
# TODO(frankf): Enable uploading for gtests.
- if test_type != 'Instrumentation':
+ if test_type not in ['Instrumentation', 'HostDriven']:
frankf 2013/07/02 20:51:10 This is no longer needed right?
gkanwar 2013/07/02 21:16:14 Ah good catch. Fixed.
logging.warning('Invalid test type.')
return

Powered by Google App Engine
This is Rietveld 408576698