diff options
author | Craig Tiller <ctiller@google.com> | 2015-01-12 13:51:54 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-01-12 13:51:54 -0800 |
commit | b29797b142a016ec9821b65479309329e151f6b4 (patch) | |
tree | 47e210343df26ff340be81a7c82d96d62953f3c3 /tools | |
parent | 3b08306c1319c55f2f5724104cb96982d895de9a (diff) |
Remove ?san from the default tests.
At least until they stabilize some.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 9234682bea..c9aedc1679 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -13,13 +13,14 @@ import watch_dirs # flags required for make for each configuration _CONFIGS = ['dbg', 'opt', 'tsan', 'msan', 'asan'] +_DEFAULT = ['dbg', 'opt'] # parse command line argp = argparse.ArgumentParser(description='Run grpc tests.') argp.add_argument('-c', '--config', choices=['all'] + _CONFIGS, nargs='+', - default=['all']) + default=_DEFAULT) argp.add_argument('-t', '--test-filter', nargs='*', default=['*']) argp.add_argument('-n', '--runs_per_test', default=1, type=int) argp.add_argument('-f', '--forever', |