diff options
Diffstat (limited to 'server/Makefile.am')
-rw-r--r-- | server/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/server/Makefile.am b/server/Makefile.am index 5b0b61a4..999c4eae 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -39,6 +39,7 @@ endif if BUILD_INFOPIPE sssd_info = sssd_info infopipe_tests = infopipe-tests +infopipe_privileged_tests = infopipe-privileged-tests infopipe_headers = \ infopipe/infopipe_private.h \ infopipe/sysbus.h \ @@ -57,7 +58,8 @@ if BUILD_TESTS noinst_PROGRAMS = \ sysdb-tests \ stress-tests \ - $(infopipe_tests) + $(infopipe_tests) \ + $(infopipe_privileged_tests) endif sssdlib_LTLIBRARIES = \ @@ -334,6 +336,15 @@ infopipe_tests_CFLAGS = \ infopipe_tests_LDADD = \ $(SSSD_LIBS) \ $(CHECK_LIBS) + +infopipe_privileged_tests_SOURCES = \ + tests/infopipe-privileged-tests.c \ + $(SSSD_UTIL_OBJ) +infopipe_privileged_tests_CFLAGS = \ + $(CHECK_CFLAGS) +infopipe_privileged_tests_LDADD = \ + $(SSSD_LIBS) \ + $(CHECK_LIBS) endif #BUILD_INFOPIPE endif #BUILD_TESTS |