From: Lennart Poettering Date: Wed, 9 Oct 2013 02:02:54 +0000 (+0200) Subject: build-sys: add a makefile target to run all tests through valgrind X-Git-Tag: v209~1958 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=cac914e643a50c72893c5478f6886e0978f8fa18 build-sys: add a makefile target to run all tests through valgrind --- diff --git a/Makefile.am b/Makefile.am index 49e41ec28..31dde6f03 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4588,3 +4588,8 @@ install-tree: all rm -rf $(abs_srcdir)/install-tree $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree tree $(abs_srcdir)/install-tree + +# Let's run all tests of the test suite, but under valgrind. Let's +# exclude the one perl script we have in there +valgrind-tests: $(TESTS) + for f in $(TESTS) ; do [ "$$f" == "$${f/.pl/}" ] && libtool --mode=execute valgrind --leak-check=full --error-exitcode=55 $(builddir)/$$f ; done