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

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: bling -> ios 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
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index c1fb450b9071cb8234e5a9515d4ccd266d940223..090d4e93a06b1412cef9a67b0a1f30ccfca52690 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -101,7 +101,8 @@ def AddCommonOptions(parser):
group.add_argument('--json-results-file', dest='json_results_file',
help='If set, will dump results in JSON form '
'to specified file.')
-
+ group.add_argument('--device-type', default='Android',
jbudorick 2015/01/09 22:06:50 use the choices kwarg. we can probably put a VALID
rnephew (Wrong account) 2015/01/09 23:35:36 Done.
+ help=('Type of device to run on. iOS or android'))
def ProcessCommonOptions(args):
"""Processes and handles all common options."""
@@ -142,7 +143,7 @@ def AddRemoteDeviceOptions(parser):
help=('Type of test to run as.'))
group.add_argument('--runner-package', default='',
help=('Package name of test.'))
- group.add_argument('--apk-under-test', default='apks/Chrome.apk',
+ group.add_argument('--app-under-test', default='',
help=('APK to run tests on.'))
api_secret_group = group.add_mutually_exclusive_group()

Powered by Google App Engine
This is Rietveld 408576698