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

Unified Diff: build/android/test_runner.py

Issue 19799003: [android] Instumentation tests determine whether to install test apk based on Md5Sum. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed reference in uiautomator Created 7 years, 5 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 905174d709551b2a6cd6aaf79cc02228f631bcb3..2a36a2113165494413509f0152ce3cadc95d7920 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -266,7 +266,7 @@ def AddInstrumentationTestOptions(option_parser):
option_parser.usage = '%prog instrumentation [options]'
option_parser.command_list = []
- option_parser.example = ('%prog instrumentation -I '
+ option_parser.example = ('%prog instrumentation '
'--test-apk=ChromiumTestShellTest')
AddJavaTestOptions(option_parser)
@@ -275,8 +275,9 @@ def AddInstrumentationTestOptions(option_parser):
option_parser.add_option('-w', '--wait_debugger', dest='wait_for_debugger',
action='store_true',
help='Wait for debugger.')
+ #TODO(craigdh): Remove option once -I is no longer passed downstream.
option_parser.add_option('-I', dest='install_apk', action='store_true',
- help='Install test APK.')
+ help='This switch has no effect.')
frankf 2013/07/19 21:53:54 Follow the DEPRECATED used elsewhere in this file.
craigdh 2013/07/19 23:38:38 Done.
option_parser.add_option(
'--test-apk', dest='test_apk',
help=('The name of the apk containing the tests '

Powered by Google App Engine
This is Rietveld 408576698