2005-02-20 14:27:00 +00:00
|
|
|
# lighttpd.conf and conformance.pl expect this directory
|
|
|
|
testdir=/tmp/lighttpd/
|
|
|
|
|
2005-02-27 22:01:13 +00:00
|
|
|
if CHECK_WITH_FASTCGI
|
2005-03-01 13:37:40 +00:00
|
|
|
check_PROGRAMS=fcgi-auth fcgi-responder
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
fcgi_auth_SOURCES=fcgi-auth.c
|
|
|
|
fcgi_auth_LDADD=-lfcgi
|
2005-03-01 13:37:40 +00:00
|
|
|
|
|
|
|
fcgi_responder_SOURCES=fcgi-responder.c
|
|
|
|
fcgi_responder_LDADD=-lfcgi
|
2005-02-27 22:01:13 +00:00
|
|
|
endif
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
TESTS=\
|
2005-06-26 10:27:41 +00:00
|
|
|
prepare.sh \
|
|
|
|
run-tests.pl \
|
|
|
|
cleanup.sh
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
CONFS=fastcgi-10.conf \
|
2005-03-01 13:37:40 +00:00
|
|
|
fastcgi-auth.conf \
|
|
|
|
fastcgi-responder.conf \
|
2005-02-20 14:27:00 +00:00
|
|
|
fastcgi-13.conf \
|
|
|
|
bug-06.conf \
|
2005-03-02 11:27:02 +00:00
|
|
|
bug-12.conf \
|
2005-08-08 14:40:47 +00:00
|
|
|
core-var-include.t \
|
|
|
|
var-include.conf \
|
|
|
|
var-include-sub.conf \
|
2005-08-08 13:48:33 +00:00
|
|
|
condition.conf \
|
|
|
|
core-condition.t \
|
2005-03-02 11:27:02 +00:00
|
|
|
core-request.t \
|
|
|
|
core-response.t \
|
|
|
|
core.t \
|
|
|
|
mod-access.t \
|
|
|
|
mod-auth.t \
|
|
|
|
mod-cgi.t \
|
|
|
|
mod-compress.t \
|
|
|
|
mod-fastcgi.t \
|
|
|
|
mod-redirect.t \
|
|
|
|
mod-userdir.t \
|
2005-03-04 18:38:46 +00:00
|
|
|
mod-rewrite.t \
|
2005-06-26 10:27:41 +00:00
|
|
|
request.t \
|
|
|
|
LightyTest.pm
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2005-06-26 10:27:41 +00:00
|
|
|
TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2005-03-06 11:22:14 +00:00
|
|
|
EXTRA_DIST=wrapper.sh lighttpd.conf \
|
2005-02-20 14:27:00 +00:00
|
|
|
lighttpd.user \
|
|
|
|
$(CONFS) \
|
|
|
|
$(TESTS)
|
2005-06-26 10:27:41 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
SUBDIRS=docroot
|
|
|
|
|
|
|
|
leak-check:
|
|
|
|
for i in $(TESTS); do \
|
|
|
|
$(srcdir)/$$i; \
|
|
|
|
echo $$?; \
|
|
|
|
done
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
rm -f *.out
|