diff options
author | Craig Tiller <ctiller@google.com> | 2016-09-13 09:41:26 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-09-13 09:41:26 -0700 |
commit | b6df24765f441d486a778ada9cf1c2f6c1cce4a7 (patch) | |
tree | fc48d816711b817fdc9da485f88a6a0ac9e2376d /tools/run_tests/performance | |
parent | c5aa7005386a3a17c748bddf1514d6438ff30773 (diff) |
Properly categorize tests to allow sweeps to be run by adhoc
Diffstat (limited to 'tools/run_tests/performance')
-rw-r--r-- | tools/run_tests/performance/scenario_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py index 0219afe9dc..0ac5dfc5bf 100644 --- a/tools/run_tests/performance/scenario_config.py +++ b/tools/run_tests/performance/scenario_config.py @@ -38,6 +38,7 @@ BENCHMARK_SECONDS=30 SMOKETEST='smoketest' SCALABLE='scalable' SWEEP='sweep' +DEFAULT_CATEGORIES=[SCALABLE, SMOKETEST] SECURE_SECARGS = {'use_test_ca': True, 'server_host_override': 'foo.test.google.fr'} @@ -111,7 +112,7 @@ def _ping_pong_scenario(name, rpc_type, server_core_limit=0, async_server_threads=0, warmup_seconds=WARMUP_SECONDS, - categories=[], + categories=DEFAULT_CATEGORIES, channels=None, outstanding=None, payload_size=None): |