Add -q (quiet) option to valgrind call in pactest
This gets rid of a lot of the unnecessary verbosity in the --valgrind output when running all the tests. It should also make diff-ing output between test runs a lot easier. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
f7f43dbb48
commit
90a48c771d
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ class pmtest:
|
|||
if pacman["gdb"]:
|
||||
cmd.append("libtool gdb --args")
|
||||
if pacman["valgrind"]:
|
||||
cmd.append("valgrind --tool=memcheck --leak-check=full --show-reachable=yes")
|
||||
cmd.append("valgrind -q --tool=memcheck --leak-check=full --show-reachable=yes")
|
||||
cmd.append("%s --config=%s --root=%s --dbpath=%s --cachedir=%s" \
|
||||
% (pacman["bin"],
|
||||
os.path.join(self.root, PACCONF),
|
||||
|
|
Loading…
Add table
Reference in a new issue