blob: 7d48bcbc77e69d9ce4ae7454058ae58d2cc5e4ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# $Id$
#
TOP = ../..
include $(TOP)/config.mk/template
unit-test:: unit-test-setup unit-test-body unit-test-cleanup
unit-test-setup::
$(START_SERVERS_LOCAL) -v4files -kdcport 750 -keysalt des-cbc-crc:v4
$(LOCAL_MAKE_KEYTAB) -princ changepw/kerberos /krb5/ovsec_adm.srvtab
unit-test-body::
$(RUNTEST) VFOURSERVER=../kadmind4 --tool v4server
unit-test-cleanup::
$(STOP_SERVERS_LOCAL) -v4files
|