diff options
author | Nicolas Noble <nnoble@google.com> | 2015-02-11 14:48:04 -0800 |
---|---|---|
committer | Nicolas Noble <nnoble@google.com> | 2015-02-11 14:48:04 -0800 |
commit | 0af000bfba1fb8d19dc0e5424f38a271ccc772cc (patch) | |
tree | 0a927390236b69bcccb7c9fec7168873923dd8d5 /tools | |
parent | 0bae4b2f084a2cffcd448929d4fd5ef02ffcf302 (diff) |
Fixing valgrind's codepath in run_tests.py.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index cb54c0db82..f59bff2a88 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -40,7 +40,7 @@ class ValgrindConfig(object): self.allow_hashing = False def job_spec(self, binary, hash_targets): - return JobSpec(cmdline=['valgrind', '--tool=%s' % self.tool, binary], + return jobset.JobSpec(cmdline=['valgrind', '--tool=%s' % self.tool, binary], hash_targets=None) |