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

Unified Diff: build/android/test_runner.py

Issue 2855483003: [Android] Remove --test-arguments arg from test_runner.py. (Closed)
Patch Set: Created 3 years, 8 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 cb2767e662415d00f49b3341f9a0109ec415c47d..7de06498d9289cafe0da4483d6faabbe298fe04f 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)
@@ -427,10 +421,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.

Powered by Google App Engine
This is Rietveld 408576698