aboutsummaryrefslogtreecommitdiff
path: root/src/tests/gssapi/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2013-09-04 14:23:27 -0400
committerGreg Hudson <ghudson@mit.edu>2013-09-06 01:03:02 -0400
commitecd91cd350b2c3880b3f967acfcb00ac1bdac154 (patch)
tree18ec96a9b000b1ec88062459af56eb71f33646e7 /src/tests/gssapi/Makefile.in
parent95f6a640573076b8e68051ed4f2447be767cd2ec (diff)
downloadkrb5-ecd91cd350b2c3880b3f967acfcb00ac1bdac154.zip
krb5-ecd91cd350b2c3880b3f967acfcb00ac1bdac154.tar.gz
krb5-ecd91cd350b2c3880b3f967acfcb00ac1bdac154.tar.bz2
Add tests for GSS IOV and AEAD interfaces
Add a new test program t_iov.c which tests various combinations of wrapping and unwrapping using the IOV and AEAD interfaces. Run it with and without SPNEGO in each enctype configuration.
Diffstat (limited to 'src/tests/gssapi/Makefile.in')
-rw-r--r--src/tests/gssapi/Makefile.in12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/tests/gssapi/Makefile.in b/src/tests/gssapi/Makefile.in
index 04cba07..b40e5b8 100644
--- a/src/tests/gssapi/Makefile.in
+++ b/src/tests/gssapi/Makefile.in
@@ -5,22 +5,22 @@ DEFINES = -DUSE_AUTOCONF_H
SRCS= $(srcdir)/t_accname.c $(srcdir)/t_ccselect.c $(srcdir)/t_credstore.c \
$(srcdir)/t_export_cred.c $(srcdir)/t_export_name.c \
$(srcdir)/t_gssexts.c $(srcdir)/t_imp_cred.c $(srcdir)/t_imp_name.c \
- $(srcdir)/t_inq_cred.c $(srcdir)/t_inq_mechs_name.c \
+ $(srcdir)/t_inq_cred.c $(srcdir)/t_inq_mechs_name.c $(srcdir)/t_iov.c \
$(srcdir)/t_namingexts.c $(srcdir)/t_s4u.c \
$(srcdir)/t_s4u2proxy_krb5.c $(srcdir)/t_saslname.c \
$(srcdir)/t_spnego.c
OBJS= ccinit.o ccrefresh.o common.o t_accname.o t_ccselect.o t_credstore.o \
t_export_cred.o t_export_name.o t_gssexts.o t_imp_cred.o t_imp_name.o \
- t_inq_cred.o t_inq_mechs_name.o t_namingexts.o t_oid.o t_s4u.o \
- t_s4u2proxy_krb5.o t_saslname.o t_spnego.o
+ t_inq_cred.o t_inq_mechs_name.o t_iov.o t_namingexts.o t_oid.o \
+ t_s4u.o t_s4u2proxy_krb5.o t_saslname.o t_spnego.o
COMMON_DEPS= common.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
COMMON_LIBS= common.o $(GSS_LIBS) $(KRB5_BASE_LIBS)
all:: ccinit ccrefresh t_accname t_ccselect t_credstore t_enctypes \
t_export_cred t_export_name t_gssexts t_imp_cred t_imp_name \
- t_inq_cred t_inq_mechs_name t_namingexts t_s4u t_s4u2proxy_krb5 \
+ t_inq_cred t_inq_mechs_name t_iov t_namingexts t_s4u t_s4u2proxy_krb5 \
t_saslname t_spnego t_oid
check-unix:: t_oid
@@ -28,7 +28,7 @@ check-unix:: t_oid
check-pytests:: ccinit ccrefresh t_accname t_ccselect t_credstore \
t_export_cred t_export_name t_imp_cred t_inq_cred t_inq_mechs_name \
- t_s4u t_s4u2proxy_krb5 t_spnego
+ t_iov t_s4u t_s4u2proxy_krb5 t_spnego
$(RUNPYTEST) $(srcdir)/t_gssapi.py $(PYTESTFLAGS)
$(RUNPYTEST) $(srcdir)/t_ccselect.py $(PYTESTFLAGS)
$(RUNPYTEST) $(srcdir)/t_client_keytab.py $(PYTESTFLAGS)
@@ -62,6 +62,8 @@ t_inq_cred: t_inq_cred.o $(COMMON_DEPS)
$(CC_LINK) -o $@ t_inq_cred.o $(COMMON_LIBS)
t_inq_mechs_name: t_inq_mechs_name.o $(COMMON_DEPS)
$(CC_LINK) -o $@ t_inq_mechs_name.o $(COMMON_LIBS)
+t_iov: t_iov.o $(COMMON_DEPS)
+ $(CC_LINK) -o $@ t_iov.o $(COMMON_LIBS)
t_namingexts: t_namingexts.o $(COMMON_DEPS)
$(CC_LINK) -o $@ t_namingexts.o $(COMMON_LIBS)
t_s4u: t_s4u.o $(COMMON_DEPS)