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