Chromium Code Reviews| Index: build/android/test_runner.py |
| diff --git a/build/android/test_runner.py b/build/android/test_runner.py |
| index 4f968b5008d6d05c93f219af98d53e78f9992021..2654ad04250090a2052d17da683b6d720d966c89 100755 |
| --- a/build/android/test_runner.py |
| +++ b/build/android/test_runner.py |
| @@ -254,6 +254,13 @@ def AddGTestOptions(parser): |
| group.add_argument('--break-on-failure', '--break_on_failure', |
| dest='break_on_failure', action='store_true', |
| help='Whether to break on failure.') |
| + group.add_argument('--extract-test-list-from-filter', |
| + action='store_true', |
| + help='When a test filter is specified, and the list of ' |
| + 'tests can be determined from it, skip querying the ' |
|
jbudorick
2016/02/03 14:25:17
nit: indent to opening '
agrieve
2016/02/03 16:02:02
Done.
|
| + 'device for the list of all tests. Speeds up local ' |
| + 'development, but is not safe to use on bots (' |
| + 'http://crbug.com/549214') |
| filter_group = group.add_mutually_exclusive_group() |
| filter_group.add_argument('-f', '--gtest_filter', '--gtest-filter', |