2005-02-20 14:27:00 +00:00
|
|
|
# lighttpd.conf and conformance.pl expect this directory
|
2005-08-29 12:08:00 +00:00
|
|
|
testdir=$(srcdir)/tmp/lighttpd/
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2005-02-27 22:01:13 +00:00
|
|
|
if CHECK_WITH_FASTCGI
|
2017-01-04 16:38:46 +00:00
|
|
|
check_PROGRAMS=fcgi-auth fcgi-responder scgi-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
|
|
|
|
2017-01-04 16:38:46 +00:00
|
|
|
scgi_responder_SOURCES=scgi-responder.c
|
|
|
|
|
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
|
|
|
|
2013-08-30 13:15:01 +00:00
|
|
|
CONFS=\
|
2015-06-21 12:47:14 +00:00
|
|
|
404-handler.conf \
|
|
|
|
cachable.t \
|
|
|
|
condition.conf \
|
|
|
|
core-404-handler.t \
|
|
|
|
core-condition.t \
|
|
|
|
core-keepalive.t \
|
|
|
|
core-request.t \
|
|
|
|
core-response.t \
|
|
|
|
core-var-include.t \
|
|
|
|
fastcgi-10.conf \
|
|
|
|
fastcgi-responder.conf \
|
|
|
|
LightyTest.pm \
|
|
|
|
lowercase.conf \
|
|
|
|
lowercase.t \
|
2018-12-11 03:35:21 +00:00
|
|
|
mod-auth.conf \
|
2015-06-21 12:47:14 +00:00
|
|
|
mod-auth.t \
|
|
|
|
mod-cgi.t \
|
|
|
|
mod-compress.conf \
|
|
|
|
mod-compress.t \
|
|
|
|
mod-extforward.conf \
|
|
|
|
mod-extforward.t \
|
|
|
|
mod-fastcgi.t \
|
|
|
|
mod-proxy.t \
|
2018-12-11 03:35:21 +00:00
|
|
|
mod-secdownload.conf \
|
2015-06-21 12:47:14 +00:00
|
|
|
mod-secdownload.t \
|
|
|
|
mod-setenv.t \
|
|
|
|
mod-ssi.t \
|
|
|
|
proxy.conf \
|
|
|
|
request.t \
|
2017-01-04 16:38:46 +00:00
|
|
|
scgi-responder.conf \
|
2015-06-21 12:47:14 +00:00
|
|
|
symlink.t \
|
|
|
|
var-include-sub.conf \
|
|
|
|
var-include.conf
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2006-10-05 00:09:51 +00:00
|
|
|
TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2015-06-21 12:47:14 +00:00
|
|
|
EXTRA_DIST=\
|
|
|
|
$(CONFS) \
|
|
|
|
$(TESTS) \
|
|
|
|
CMakeLists.txt \
|
2017-10-21 14:00:10 +00:00
|
|
|
meson.build \
|
2015-06-21 12:47:14 +00:00
|
|
|
lighttpd.conf \
|
2005-09-18 09:29:02 +00:00
|
|
|
lighttpd.htpasswd \
|
2015-06-21 12:47:14 +00:00
|
|
|
lighttpd.user \
|
2008-01-16 16:07:10 +00:00
|
|
|
SConscript \
|
2015-06-21 12:47:14 +00:00
|
|
|
wrapper.sh
|
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 $$?; \
|
2006-10-05 00:09:51 +00:00
|
|
|
done
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
clean-local:
|
|
|
|
rm -f *.out
|