diff options
author | Dan McGee <dan@archlinux.org> | 2008-03-23 20:25:38 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-03-23 20:25:38 +0100 |
commit | 90a48c771d727e3bd231eeb1611dfcbecb88490c (patch) | |
tree | 840455819f78eca3860a1de1d710f7d57c3ca28a /pactest | |
parent | f7f43dbb48add85c3c3e42696c4d3bae4591a7d6 (diff) | |
download | pacman-90a48c771d727e3bd231eeb1611dfcbecb88490c.tar.gz pacman-90a48c771d727e3bd231eeb1611dfcbecb88490c.tar.xz |
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>
Diffstat (limited to 'pactest')
-rwxr-xr-x | pactest/pmtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pactest/pmtest.py b/pactest/pmtest.py index d54d7ba2..d843ea6a 100755 --- a/pactest/pmtest.py +++ b/pactest/pmtest.py @@ -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), |