aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-11 15:22:39 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-11 15:22:39 -0800
commit59680ee16d772f8f268adad983f760a3d79be118 (patch)
tree3ab66b76b942a7b47239ab9578e85345597174eb /tools
parent5eff61182e1c821ba1c30eb45ae8a59cd23010a7 (diff)
parent0af000bfba1fb8d19dc0e5424f38a271ccc772cc (diff)
Merge pull request #482 from nicolasnoble/typos
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)