d67a2c36c4
On our MacOS X CI job, provjobd2 sometimes held local TCP port 49195, colliding with check-iprop. And so we move all listening ports in the test setup out of the ephemeral port ranges on Linux and Mac.
59 lines
1.2 KiB
Makefile
59 lines
1.2 KiB
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
noinst_DATA = krb5.conf mit-pkinit-20070607.cf
|
|
|
|
check_SCRIPTS = $(SCRIPT_TESTS) test_can
|
|
|
|
SCRIPT_TESTS = check-can
|
|
TESTS = $(SCRIPT_TESTS)
|
|
|
|
port = 11088
|
|
|
|
do_subst = sed -e 's,[@]srcdir[@],$(abs_srcdir),g' \
|
|
-e 's,[@]port[@],$(port),g' \
|
|
-e 's,[@]objdir[@],$(abs_top_builddir)/tests/can,g' \
|
|
-e 's,[@]EGREP[@],$(EGREP),g' \
|
|
-e 's,[@]env_setup[@],$(abs_top_builddir)/tests/bin/setup-env,g'
|
|
|
|
test_can: test_can.in Makefile
|
|
$(do_subst) < $(srcdir)/test_can.in > test_can.tmp
|
|
chmod +x test_can.tmp
|
|
mv test_can.tmp test_can
|
|
|
|
check-can: check-can.in Makefile
|
|
$(do_subst) < $(srcdir)/check-can.in > check-can.tmp
|
|
chmod +x check-can.tmp
|
|
mv check-can.tmp check-can
|
|
|
|
krb5.conf: krb5.conf.in Makefile
|
|
$(do_subst) < $(srcdir)/krb5.conf.in > krb5.conf.tmp
|
|
mv krb5.conf.tmp krb5.conf
|
|
|
|
SUFFIXES += .xf .cf
|
|
|
|
.xf.cf:
|
|
$(do_subst) < $< > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
CLEANFILES= $(TESTS) *.tmp *.cf \
|
|
current-db* \
|
|
krb5.conf \
|
|
messages.log \
|
|
test_can
|
|
|
|
EXTRA_DIST = \
|
|
NTMakefile \
|
|
apple-10.4.kadm \
|
|
apple-10.4.req \
|
|
check-can.in \
|
|
heim-0.8.kadm \
|
|
heim-0.8.req \
|
|
krb5.conf.in \
|
|
mit-pkinit-20070607.ca.crt \
|
|
mit-pkinit-20070607.kadm \
|
|
mit-pkinit-20070607.req \
|
|
mit-pkinit-20070607.xf \
|
|
test_can.in
|