Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make grpc_tcp_listener private. #4680

Merged
merged 14 commits into from
Jan 25, 2016
Prev Previous commit
Revert run_tests.py to master.
  • Loading branch information
daniel-j-born committed Jan 22, 2016
commit 25fe36ac83f33755c3062a365cd1b80235b3617f
7 changes: 2 additions & 5 deletions tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,10 @@ def __init__(self, config, tool, args=None):
self.args = args
self.allow_hashing = False

def job_spec(self, cmdline, hash_targets, cpu_cost=1.0, timeout_seconds=None,
shortname=None, environ=None):
if shortname is None:
shortname = 'valgrind %s' % cmdline[0]
def job_spec(self, cmdline, hash_targets, cpu_cost=1.0):
return jobset.JobSpec(cmdline=['valgrind', '--tool=%s' % self.tool] +
self.args + cmdline,
shortname=shortname,
shortname='valgrind %s' % cmdline[0],
hash_targets=None,
cpu_cost=cpu_cost,
flake_retries=5 if args.allow_flakes else 0,
Expand Down