Skip to content

Commit

Permalink
Fix test name conflict in import. Also use low-thread-count variant f…
Browse files Browse the repository at this point in the history
…or asan.
markdroth committed Dec 5, 2016
1 parent 9c6b595 commit bf25e24
Showing 2 changed files with 105 additions and 105 deletions.
6 changes: 3 additions & 3 deletions test/cpp/qps/gen_build_yaml.py
Original file line number Diff line number Diff line change
@@ -91,15 +91,15 @@ def guess_cpu(scenario_json, is_tsan):
'boringssl': True,
'defaults': 'boringssl',
'cpu_cost': guess_cpu(scenario_json, False),
'exclude_configs': ['tsan'],
'exclude_configs': ['tsan', 'asan'],
'timeout_seconds': 6*60
}
for scenario_json in scenario_config.CXXLanguage().scenarios()
if 'scalable' in scenario_json.get('CATEGORIES', [])
] + [
{
'name': 'json_run_localhost',
'shortname': 'json_run_localhost:%s' % scenario_json['name'],
'shortname': 'json_run_localhost:%s_low_thread_count' % scenario_json['name'],
'args': ['--scenarios_json', _scenario_json_string(scenario_json, True)],
'ci_platforms': ['linux'],
'platforms': ['linux'],
@@ -108,7 +108,7 @@ def guess_cpu(scenario_json, is_tsan):
'boringssl': True,
'defaults': 'boringssl',
'cpu_cost': guess_cpu(scenario_json, True),
'exclude_configs': sorted(c for c in configs_from_yaml if c != 'tsan'),
'exclude_configs': sorted(c for c in configs_from_yaml if c not in ('tsan', 'asan')),
'timeout_seconds': 6*60
}
for scenario_json in scenario_config.CXXLanguage().scenarios()
Loading
Oops, something went wrong.

0 comments on commit bf25e24

Please sign in to comment.