Merge pull request #13824 from ncteisen/fix-trickle

Make benchmark tests use correct timeout
pull/13601/merge
Noah Eisen 7 years ago committed by GitHub
commit 98350e96e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      tools/run_tests/run_tests.py

@ -385,7 +385,9 @@ class CLanguage(object):
shortname='%s %s' % (' '.join(cmdline),
shortname_ext),
cpu_cost=cpu_cost,
timeout_seconds=_DEFAULT_TIMEOUT_SECONDS *
timeout_seconds=target.get(
'timeout_seconds',
_DEFAULT_TIMEOUT_SECONDS) *
timeout_scaling,
environ=env))
elif 'gtest' in target and target['gtest']:

Loading…
Cancel
Save