OBJS= t_imp_name.o t_s4u.o t_namingexts.o t_gssexts.o
+PYTESTS= t_gssapi.py
+
all:: t_imp_name t_s4u t_namingexts t_gssexts t_spnego
+check-pytests:: t_spnego
+
t_imp_name: t_imp_name.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
$(CC_LINK) -o t_imp_name t_imp_name.o $(GSS_LIBS) $(KRB5_BASE_LIBS)
t_s4u: t_s4u.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
--- /dev/null
+#!/usr/bin/python
+from k5test import *
+
+for realm in multipass_realms():
+ realm.run_as_client(['./t_spnego', realm.host_princ, realm.keytab])
+
+success('GSSAPI test programs (SPNEGO only).')