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

Unified Diff: build/android/run_uiautomator_tests.py

Issue 13496004: [Android] Set flags for uiautomator based on annotations not test name. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
« no previous file with comments | « build/android/run_instrumentation_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/run_uiautomator_tests.py
diff --git a/build/android/run_uiautomator_tests.py b/build/android/run_uiautomator_tests.py
index c804b23d352af64eed4a8fdf6643ef27ffb1b239..63480f478c5712b62c14c5a86a1efc77848a2df5 100755
--- a/build/android/run_uiautomator_tests.py
+++ b/build/android/run_uiautomator_tests.py
@@ -52,12 +52,12 @@ def DispatchUIAutomatorTests(options):
report_results.LogFull(
results=all_results,
test_type='UIAutomator',
- test_package=os.path.basename(options.uiautomator_jar),
+ test_package=os.path.basename(options.test_jar),
annotation=options.annotation,
build_type=options.build_type,
flakiness_server=options.flakiness_dashboard_server)
- return len(all_results.GetAllBroken())
+ return len(all_results.GetNotPass())
def main(argv):
« no previous file with comments | « build/android/run_instrumentation_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698