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

Unified Diff: build/android/test_runner.py

Issue 1684193002: test_runner.py Add --enable-concurrent-adb to --fast-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 005087259b88563101bd2fda4614ef99f08d623e..734994121ce4b0ed1646d77f2ab01fb8891942f0 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -125,14 +125,15 @@ def AddCommonOptions(parser):
namespace.verbose_count = max(namespace.verbose_count, 1)
namespace.num_retries = 0
namespace.enable_device_cache = True
+ namespace.enable_concurrent_adb = True
namespace.skip_clear_data = True
namespace.extract_test_list_from_filter = True
group.add_argument('--fast-local-dev', type=bool, nargs=0,
action=FastLocalDevAction,
help='Alias for: --verbose --num-retries=0 '
- '--enable-device-cache --skip-clear-data '
- '--extract-test-list-from-filter')
+ '--enable-device-cache --enable-concurrent-adb '
+ '--skip-clear-data --extract-test-list-from-filter')
def ProcessCommonOptions(args):
"""Processes and handles all common options."""
« 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