From: Stephan Bosch Date: Fri, 2 Feb 2018 17:35:49 +0000 (+0100) Subject: lib-program-client: Run local client tests with valgrind --trace-children=no. X-Git-Tag: 2.3.6~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03d4494a70873bb982402a75d7bdbc73db99985b;p=thirdparty%2Fdovecot%2Fcore.git lib-program-client: Run local client tests with valgrind --trace-children=no. Before, valgrind was omitted entirely. --- diff --git a/src/lib-program-client/Makefile.am b/src/lib-program-client/Makefile.am index f7863ba5d9..4198606d67 100644 --- a/src/lib-program-client/Makefile.am +++ b/src/lib-program-client/Makefile.am @@ -48,7 +48,7 @@ test_program_client_net_LDADD = $(test_libs) check-local: for bin in $(test_programs); do \ if test "$$bin" = "test-program-client-local"; then \ - if ! env NOVALGRIND=yes $(RUN_TEST) ./$$bin; then exit 1; fi; \ + if ! env NOCHILDREN=yes $(RUN_TEST) ./$$bin; then exit 1; fi; \ else \ if ! $(RUN_TEST) ./$$bin; then exit 1; fi; \ fi \