From fc7981610ce5cd3f41122e7073cc94991b7f9b6a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A1n=20Tomko?= Date: Sat, 22 Feb 2020 00:51:41 +0100 Subject: [PATCH] tests: valgrind: do not trace system binaries MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add /usr/bin/* to -trace-children-skip Signed-off-by: Ján Tomko Reviewed-by: Michal Privoznik --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)" -- 2.47.2