From 90a48c771d727e3bd231eeb1611dfcbecb88490c Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 23 Mar 2008 14:25:38 -0500 Subject: 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 --- pactest/pmtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pactest') 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 @@ def run(self, pacman): 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), -- cgit v1.2.3-54-g00ecf