diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-03-03 17:46:56 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-03-03 17:46:56 +0100 |
commit | 04c760d2fe8615203993829f7724f7e6ba553340 (patch) | |
tree | 99e9c6182f1c7303d4ef4a7e88f8a75f2f687bc3 /Makefile.am | |
parent | 7e6be9c2ecb860ab54401420591e26664dcdbfe8 (diff) | |
parent | 6307c39b94344b901c1d6e0df7ee58644a8809bf (diff) |
Merge pull request #2781 from keszybz/selinux-and-warnings
Selinux loading fix and warning cleanups
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 4f9072c0ff..0f17bad8b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1479,7 +1479,9 @@ tests += \ test-dns-domain \ test-install-root \ test-rlimit-util \ - test-signal-util + test-signal-util \ + test-selinux \ + test-sizeof if HAVE_ACL tests += \ @@ -1873,6 +1875,18 @@ test_signal_util_SOURCES = \ test_signal_util_LDADD = \ libshared.la +test_selinux_SOURCES = \ + src/test/test-selinux.c + +test_selinux_LDADD = \ + libshared.la + +test_sizeof_SOURCES = \ + src/test/test-sizeof.c + +test_sizeof_LDADD = \ + libshared.la + BUILT_SOURCES += \ src/test/test-hashmap-ordered.c |