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: http://src.chromium.org/svn/trunk/src/build@199201 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
bulach@chromium.org 2013-05-09 12:50:46 +00:00
Родитель 5c6dbf2fee
Коммит 3f4c87a0ed
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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()