changeset 19368:923935a77ca8

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.
author Timo Sirainen <tss@iki.fi>
date Mon, 16 Nov 2015 14:16:00 +0200
parents fdfc926202da
children 1146e005bd75
files dovecot.m4
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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