diff options
-rwxr-xr-x | testrunner/run_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testrunner/run_command.py b/testrunner/run_command.py index 7d1f547ea..79c7ea5cd 100755 --- a/testrunner/run_command.py +++ b/testrunner/run_command.py @@ -144,7 +144,7 @@ def RunHostCommand(binary, valgrind=False): else: # Need the full path to valgrind to avoid other versions on the system. subproc = subprocess.Popen(["/usr/bin/valgrind", "--tool=memcheck", - "--leak-check=yes", "-q", full_path], + "--leak-check=yes", "-q", binary], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) # Cannot rely on the retcode of valgrind. Instead look for an empty output. valgrind_out = subproc.communicate()[0].strip() |