dovecot-2.2: dovecot.m4: Run valgrind with --trace-children=yes

dovecot at dovecot.org dovecot at dovecot.org
Mon Nov 16 12:16:28 UTC 2015


details:   http://hg.dovecot.org/dovecot-2.2/rev/923935a77ca8
changeset: 19368:923935a77ca8
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Nov 16 14:16:00 2015 +0200
description:
dovecot.m4: Run valgrind with --trace-children=yes
Some of the unit tests are run via shell and we want to check the unit tests
instead of just the shell.

diffstat:

 dovecot.m4 |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r fdfc926202da -r 923935a77ca8 dovecot.m4
--- a/dovecot.m4	Mon Nov 16 14:15:02 2015 +0200
+++ b/dovecot.m4	Mon Nov 16 14:16:00 2015 +0200
@@ -6,7 +6,7 @@
 # unlimited permission to copy and/or distribute it, with or without
 # modifications, as long as this notice is preserved.
 
-# serial 18
+# serial 19
 
 AC_DEFUN([DC_DOVECOT_MODULEDIR],[
 	AC_ARG_WITH(moduledir,
@@ -46,9 +46,9 @@
   trap "rm -f test.out.\$\$" 0 1 2 3 15
   supp_path="\$top_srcdir/run-test-valgrind.supp"
   if test -r "\$supp_path"; then
-    valgrind -q --leak-check=full --suppressions="\$supp_path" --log-file=test.out.\$\$ \$[*]
+    valgrind -q --trace-children=yes --leak-check=full --suppressions="\$supp_path" --log-file=test.out.\$\$ \$[*]
   else
-    valgrind -q --leak-check=full --log-file=test.out.\$\$ \$[*]
+    valgrind -q --trace-children=yes --leak-check=full --log-file=test.out.\$\$ \$[*]
   fi
   ret=\$?
   if test -s test.out.\$\$; then


More information about the dovecot-cvs mailing list