summaryrefslogtreecommitdiffstats
path: root/src/tests/gssapi/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2012-08-22 14:49:33 -0400
committerGreg Hudson <ghudson@mit.edu>2012-09-11 01:18:47 -0400
commit285374977d233bbdfcdfaaf8642dbc554e3058fe (patch)
tree0d7f6653faf7ea002f65d788cd639860d3fdce2e /src/tests/gssapi/Makefile.in
parent9c1a6246f1f6f4904e66f9f9eefbdc59e5c8b69f (diff)
downloadkrb5-285374977d233bbdfcdfaaf8642dbc554e3058fe.tar.gz
krb5-285374977d233bbdfcdfaaf8642dbc554e3058fe.tar.xz
krb5-285374977d233bbdfcdfaaf8642dbc554e3058fe.zip
Add tests for GSS cred export and import
ticket: 7354
Diffstat (limited to 'src/tests/gssapi/Makefile.in')
-rw-r--r--src/tests/gssapi/Makefile.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/tests/gssapi/Makefile.in b/src/tests/gssapi/Makefile.in
index 0ad730fc4..35ff010ca 100644
--- a/src/tests/gssapi/Makefile.in
+++ b/src/tests/gssapi/Makefile.in
@@ -11,17 +11,19 @@ SRCS= $(srcdir)/t_accname.c $(srcdir)/t_ccselect.c $(srcdir)/t_imp_cred.c \
OBJS= t_accname.o t_ccselect.o t_imp_cred.o t_imp_name.o t_s4u.o \
t_s4u2proxy_krb5.o t_namingexts.o t_gssexts.o t_spnego.o t_saslname.o \
- t_credstore.o t_export_name.o
+ t_credstore.o t_export_name.o t_export_cred.o
all:: t_accname t_ccselect t_imp_cred t_imp_name t_s4u t_s4u2proxy_krb5 \
- t_namingexts t_gssexts t_spnego t_saslname t_credstore t_export_name
+ t_namingexts t_gssexts t_spnego t_saslname t_credstore t_export_name \
+ t_export_cred
check-pytests:: t_accname t_ccselect t_imp_cred t_inq_cred t_spnego \
- t_s4u2proxy_krb5 t_s4u t_export_name ccinit ccrefresh
+ t_s4u2proxy_krb5 t_s4u t_export_name t_export_cred ccinit ccrefresh
$(RUNPYTEST) $(srcdir)/t_gssapi.py $(PYTESTFLAGS)
$(RUNPYTEST) $(srcdir)/t_ccselect.py $(PYTESTFLAGS)
$(RUNPYTEST) $(srcdir)/t_s4u.py $(PYTESTFLAGS)
$(RUNPYTEST) $(srcdir)/t_client_keytab.py $(PYTESTFLAGS)
+ $(RUNPYTEST) $(srcdir)/t_export_cred.py $(PYTESTFLAGS)
ccinit: ccinit.o $(KRB5_BASE_DEPLIBS)
$(CC_LINK) -o ccinit ccinit.o $(KRB5_BASE_LIBS)
@@ -53,8 +55,10 @@ t_credstore: t_credstore.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
$(CC_LINK) -o t_credstore t_credstore.o $(GSS_LIBS) $(KRB5_BASE_LIBS)
t_export_name: t_export_name.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
$(CC_LINK) -o $@ t_export_name.o $(GSS_LIBS) $(KRB5_BASE_LIBS)
+t_export_cred: t_export_cred.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
+ $(CC_LINK) -o $@ t_export_cred.o $(GSS_LIBS) $(KRB5_BASE_LIBS)
clean::
$(RM) t_accname t_ccselect t_imp_cred t_imp_name t_inq_cred t_s4u \
t_s4u2proxy_krb5 t_namingexts t_gssexts t_spnego \
- t_saslname t_credstore t_export_name
+ t_saslname t_credstore t_export_name t_export_cred