Skip to content
Snippets Groups Projects
Commit bc28cd6f authored by Craig Tiller's avatar Craig Tiller
Browse files

Scale poll-cv test timeouts up

parent 1747055e
No related branches found
No related tags found
No related merge requests found
...@@ -231,6 +231,9 @@ class CLanguage(object): ...@@ -231,6 +231,9 @@ class CLanguage(object):
'GRPC_POLL_STRATEGY': polling_strategy, 'GRPC_POLL_STRATEGY': polling_strategy,
'GRPC_VERBOSITY': 'DEBUG'} 'GRPC_VERBOSITY': 'DEBUG'}
shortname_ext = '' if polling_strategy=='all' else ' GRPC_POLL_STRATEGY=%s' % polling_strategy shortname_ext = '' if polling_strategy=='all' else ' GRPC_POLL_STRATEGY=%s' % polling_strategy
timeout_scaling = 1
if polling_strategy == 'poll-cv':
timeout_scaling *= 5
if self.config.build_config in target['exclude_configs']: if self.config.build_config in target['exclude_configs']:
continue continue
if self.args.iomgr_platform in target.get('exclude_iomgrs', []): if self.args.iomgr_platform in target.get('exclude_iomgrs', []):
...@@ -269,6 +272,7 @@ class CLanguage(object): ...@@ -269,6 +272,7 @@ class CLanguage(object):
out.append(self.config.job_spec(cmdline, out.append(self.config.job_spec(cmdline,
shortname='%s --gtest_filter=%s %s' % (binary, test, shortname_ext), shortname='%s --gtest_filter=%s %s' % (binary, test, shortname_ext),
cpu_cost=cpu_cost, cpu_cost=cpu_cost,
timeout_seconds=_DEFAULT_TIMEOUT_SECONDS * timeout_scaling,
environ=env)) environ=env))
else: else:
cmdline = [binary] + target['args'] cmdline = [binary] + target['args']
...@@ -279,7 +283,7 @@ class CLanguage(object): ...@@ -279,7 +283,7 @@ class CLanguage(object):
shortname_ext, shortname_ext,
cpu_cost=cpu_cost, cpu_cost=cpu_cost,
flaky=target.get('flaky', False), flaky=target.get('flaky', False),
timeout_seconds=target.get('timeout_seconds', _DEFAULT_TIMEOUT_SECONDS), timeout_seconds=target.get('timeout_seconds', _DEFAULT_TIMEOUT_SECONDS) * timeout_scaling,
environ=env)) environ=env))
elif self.args.regex == '.*' or self.platform == 'windows': elif self.args.regex == '.*' or self.platform == 'windows':
print('\nWARNING: binary not found, skipping', binary) print('\nWARNING: binary not found, skipping', binary)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment