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

Unified Diff: build/android/test_runner.py

Issue 1415393002: Android test_runner.py: Make --num-retries an alias for --num_retries (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index d8828a2953d30440965bb493cf59e7cb6ca271d6..0f0f3977997dea8334951fefb88ccdbf74fc218d 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -79,7 +79,8 @@ def AddCommonOptions(parser):
' located (must include build type). This will take'
' precedence over --debug, --release and'
' --build-directory'))
- group.add_argument('--num_retries', dest='num_retries', type=int, default=2,
+ group.add_argument('--num_retries', '--num-retries', dest='num_retries',
+ type=int, default=2,
help=('Number of retries for a test before '
'giving up (default: %(default)s).'))
group.add_argument('-v',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698