Merge pull request #13813 from dgquintas/disable_low_thread_count

Disabled the json_run_localhost:*_low_thread_count family of tests
pull/13821/head
David G. Quintas 7 years ago committed by GitHub
commit 1acca45e89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 40
      test/cpp/qps/gen_build_yaml.py
  2. 3011
      tools/run_tests/generated/tests.json

@ -101,24 +101,26 @@ print yaml.dump({
}
for scenario_json in scenario_config.CXXLanguage().scenarios()
if 'inproc' in scenario_json.get('CATEGORIES', [])
] + [
{
'name': 'json_run_localhost',
'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'],
'flaky': False,
'language': 'c++',
'boringssl': True,
'defaults': 'boringssl',
'cpu_cost': guess_cpu(scenario_json, True),
'exclude_configs': sorted(c for c in configs_from_yaml if c not in ('tsan', 'asan')),
'timeout_seconds': 10*60,
'excluded_poll_engines': scenario_json.get('EXCLUDED_POLL_ENGINES', []),
'auto_timeout_scaling': False
}
for scenario_json in scenario_config.CXXLanguage().scenarios()
if 'scalable' in scenario_json.get('CATEGORIES', [])
]
# Disabled until https://github.com/grpc/grpc/issues/13122 is resolved.
# + [
# {
# 'name': 'json_run_localhost',
# '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'],
# 'flaky': False,
# 'language': 'c++',
# 'boringssl': True,
# 'defaults': 'boringssl',
# 'cpu_cost': guess_cpu(scenario_json, True),
# 'exclude_configs': sorted(c for c in configs_from_yaml if c not in ('tsan', 'asan')),
# 'timeout_seconds': 10*60,
# 'excluded_poll_engines': scenario_json.get('EXCLUDED_POLL_ENGINES', []),
# 'auto_timeout_scaling': False
# }
# for scenario_json in scenario_config.CXXLanguage().scenarios()
# if 'scalable' in scenario_json.get('CATEGORIES', [])
# ]
})

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save