diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 12:50:46 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 12:50:46 +0000 |
commit | 02f3b25d72782d0415308ba00ff48df06f77f35d (patch) | |
tree | a7fd1c50210229a396c72026230071c4b6dc18e1 /build | |
parent | c366aaba318fa8badb81e77c677494121643a0c8 (diff) | |
download | chromium_src-02f3b25d72782d0415308ba00ff48df06f77f35d.zip chromium_src-02f3b25d72782d0415308ba00ff48df06f77f35d.tar.gz chromium_src-02f3b25d72782d0415308ba00ff48df06f77f35d.tar.bz2 |
Android: fixes option to exclude specific annotated Android instrumentation tests.
Broken at https://chromiumcodereview.appspot.com/14704006/
Wrong number of parameters in run_uiautomator_tests.py
BUG=169875, 239410
NOTRY=True
TBR=sivachandra@chromium.org,craigdh@chromium.org
Review URL: https://chromiumcodereview.appspot.com/15001004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199201 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/android/pylib/uiautomator/dispatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/pylib/uiautomator/dispatch.py b/build/android/pylib/uiautomator/dispatch.py index 7dd6990..0f68ce4 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( - 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() |