diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2012-05-22 00:17:32 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-06-14 15:52:29 -0400 |
commit | f232789430a080384188d5da89b19d874cf17513 (patch) | |
tree | 59c595737c4a5e899d3a81f6734b0b629e1b5eb9 /Makefile.am | |
parent | 7b14a9e64fd248103149eb1cb422ee752d91ba58 (diff) | |
download | sssd-f232789430a080384188d5da89b19d874cf17513.tar.gz sssd-f232789430a080384188d5da89b19d874cf17513.tar.bz2 sssd-f232789430a080384188d5da89b19d874cf17513.zip |
Add a krb5_child test tool
https://fedorahosted.org/sssd/ticket/1127
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 8af213e5..7bdc5930 100644 --- a/Makefile.am +++ b/Makefile.am @@ -120,6 +120,7 @@ endif check_PROGRAMS = \ stress-tests \ + krb5-child-test \ $(non_interactive_check_based_tests) PYTHON_TESTS = @@ -972,6 +973,29 @@ stress_tests_LDADD = \ libsss_util.la \ libsss_test_common.la +krb5_child_test_SOURCES = \ + src/tests/krb5_child-test.c \ + src/providers/krb5/krb5_utils.c \ + src/providers/krb5/krb5_child_handler.c \ + src/providers/krb5/krb5_become_user.c \ + src/providers/krb5/krb5_common.c \ + src/util/sss_krb5.c \ + src/providers/data_provider_fo.c \ + src/providers/data_provider_opts.c \ + src/providers/data_provider_callbacks.c \ + $(SSSD_FAILOVER_OBJ) +krb5_child_test_CFLAGS = \ + $(AM_CFLAGS) \ + -DKRB5_CHILD_DIR=\"$(builddir)\" \ + $(CHECK_CFLAGS) +krb5_child_test_LDADD = \ + $(SSSD_LIBS)\ + $(CARES_LIBS) \ + $(KRB5_LIBS) \ + $(CHECK_LIBS) \ + libsss_util.la \ + libsss_test_common.la + noinst_PROGRAMS = pam_test_client if BUILD_SUDO noinst_PROGRAMS += sss_sudo_cli |