aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nnoble@google.com>2015-02-11 14:48:04 -0800
committerGravatar Nicolas Noble <nnoble@google.com>2015-02-11 14:48:04 -0800
commit0af000bfba1fb8d19dc0e5424f38a271ccc772cc (patch)
tree0a927390236b69bcccb7c9fec7168873923dd8d5 /tools
parent0bae4b2f084a2cffcd448929d4fd5ef02ffcf302 (diff)
Fixing valgrind's codepath in run_tests.py.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py2
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)