From: Ján Tomko Date: Fri, 21 Feb 2020 23:51:41 +0000 (+0100) Subject: tests: valgrind: do not trace system binaries X-Git-Tag: v6.2.0-rc1~252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc7981610ce5cd3f41122e7073cc94991b7f9b6a;p=thirdparty%2Flibvirt.git tests: valgrind: do not trace system binaries Add /usr/bin/* to -trace-children-skip Signed-off-by: Ján Tomko Reviewed-by: Michal Privoznik --- diff --git a/tests/Makefile.am b/tests/Makefile.am index 3b5abcc12b..73f77b952f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -485,7 +485,7 @@ TESTS_ENVIRONMENT = \ VALGRIND = valgrind --quiet --leak-check=full --trace-children=yes \ - --trace-children-skip="*/tools/virsh","*/tests/commandhelper" \ + --trace-children-skip="*/tools/virsh","*/tests/commandhelper","/usr/bin/*" \ --suppressions=$(abs_srcdir)/.valgrind.supp valgrind: $(MAKE) check VG="$(LIBTOOL) --mode=execute $(VALGRIND)"