summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2008-03-23 20:25:38 +0100
committerDan McGee <dan@archlinux.org>2008-03-23 20:25:38 +0100
commit90a48c771d727e3bd231eeb1611dfcbecb88490c (patch)
tree840455819f78eca3860a1de1d710f7d57c3ca28a
parentf7f43dbb48add85c3c3e42696c4d3bae4591a7d6 (diff)
downloadpacman-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>
-rwxr-xr-xpactest/pmtest.py2
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),