chiark / gitweb /
do not accept "garbage" from acpi firmware performance data (FPDT)
[elogind.git] / Makefile.am
index 49e41ec28cdc92ca6acb78d19bdb3d852fdb6101..1458697c05aae916e29868dca4492ea8219a5604 100644 (file)
@@ -723,7 +723,9 @@ libsystemd_shared_la_SOURCES = \
        src/shared/boot-timestamps.c \
        src/shared/refcnt.h \
        src/shared/mkdir.c \
-       src/shared/mkdir.h
+       src/shared/mkdir.h \
+       src/shared/smack-util.c \
+       src/shared/smack-util.h
 
 #-------------------------------------------------------------------------------
 noinst_LTLIBRARIES += \
@@ -4588,3 +4590,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