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

Unified Diff: build/android/pylib/uiautomator/dispatch.py

Issue 15001004: Android: fixes option to exclude specific annotated Android instrumentation tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/uiautomator/dispatch.py
diff --git a/build/android/pylib/uiautomator/dispatch.py b/build/android/pylib/uiautomator/dispatch.py
index 7dd6990c667218b4a44253f11209ea6d0b415e4c..0f68ce4965246c63302a24ab100311fb5a3cc47b 100644
--- a/build/android/pylib/uiautomator/dispatch.py
+++ b/build/android/pylib/uiautomator/dispatch.py
@@ -33,7 +33,7 @@ def Dispatch(options):
test_pkg = test_package.TestPackage(
options.uiautomator_jar, options.uiautomator_info_jar)
tests = test_pkg._GetAllMatchingTests(
bulach 2013/05/09 11:22:44 this shouldn't be calling a "_" protected method.
- options.annotations, options.test_filter)
+ options.annotations, options.exclude_annotations, options.test_filter)
if not tests:
logging.warning('No uiautomator tests to run with current args.')
return base_test_result.TestRunResults()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698