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

Unified Diff: build/android/test_runner.py

Issue 840393003: Add support for ios_uirobot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/pylib/uirobot/uirobot_test_instance.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index 4164bd8bb0079c3a947cffe2e7081ea927dabe85..19649ff390bb0c4e48b50c54ba68c075c3fbbf3d 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -102,7 +102,6 @@ def AddCommonOptions(parser):
help='If set, will dump results in JSON form '
'to specified file.')
-
def ProcessCommonOptions(args):
"""Processes and handles all common options."""
run_tests_helper.SetLogLevel(args.verbose_count)
@@ -140,10 +139,11 @@ def AddRemoteDeviceOptions(parser):
group.add_argument('--api-port', help='Port to send HTTP requests to.')
group.add_argument('--runner-type', default='',
help='Type of test to run as.')
- group.add_argument('--runner-package', default='',
- help='Package name of test.')
- group.add_argument('--app-under-test', default='',
- help='APK to run tests on.')
+ group.add_argument('--runner-package', help='Package name of test.')
+ group.add_argument('--app-under-test', help='APK to run tests on.')
+ group.add_argument('--device-type', default='Android',
+ choices=constants.VALID_DEVICE_TYPES,
+ help=('Type of device to run on. iOS or android'))
api_secret_group = group.add_mutually_exclusive_group()
api_secret_group.add_argument('--api-secret', default='',
« no previous file with comments | « build/android/pylib/uirobot/uirobot_test_instance.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698