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

Unified Diff: build/android/test_runner.py

Issue 2855483003: [Android] Remove --test-arguments arg from test_runner.py. (Closed)
Patch Set: trivial rebase Created 3 years, 7 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 de297bb4e537b728905b64d18718395289173057..f9c2c4f88745482afa62a8267fb82b80f81e3b29 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -84,12 +84,6 @@ def AddCommandLineOptions(parser):
type=os.path.realpath,
help='The relative filepath to a file containing '
'command-line flags to set on the device')
- # TODO(jbudorick): This is deprecated. Remove once clients have switched
- # to passing command-line flags directly.
- parser.add_argument(
- '-a', '--test-arguments',
- dest='test_arguments', default='',
- help=argparse.SUPPRESS)
parser.set_defaults(allow_unknown=True)
parser.set_defaults(command_line_flags=None)
@@ -431,10 +425,6 @@ def AddInstrumentationTestOptions(parser):
'--timeout-scale',
type=float,
help='Factor by which timeouts should be scaled.')
- parser.add_argument(
- '-w', '--wait_debugger',
- action='store_true', dest='wait_for_debugger',
- help='Wait for debugger.')
# These arguments are suppressed from the help text because they should
# only ever be specified by an intermediate script.
« no previous file with comments | « build/android/pylib/instrumentation/instrumentation_test_instance_test.py ('k') | docs/android_debugging_instructions.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698