xref: /lighttpd1.4/tests/Makefile.am (revision 5294d7e1)
1# lighttpd.conf and conformance.pl expect this directory
2testdir=$(srcdir)/tmp/lighttpd/
3
4check_PROGRAMS=fcgi-responder scgi-responder
5
6fcgi_responder_SOURCES=fcgi-responder.c
7scgi_responder_SOURCES=scgi-responder.c
8
9TESTS=\
10	prepare.sh \
11	run-tests.pl \
12	cleanup.sh
13
14CONFS=\
15	condition.conf \
16	core-condition.t \
17	fastcgi-responder.conf \
18	LightyTest.pm \
19	mod-fastcgi.t \
20	mod-scgi.t \
21	proxy.conf \
22	request.t \
23	scgi-responder.conf \
24	var-include-sub.conf
25
26TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir)
27
28EXTRA_DIST=\
29	$(CONFS) \
30	$(TESTS) \
31	CMakeLists.txt \
32	meson.build \
33	lighttpd.conf \
34	lighttpd.htpasswd \
35	lighttpd.user \
36	SConscript \
37	wrapper.sh
38
39SUBDIRS=docroot
40
41leak-check:
42	for i in $(TESTS); do \
43		$(srcdir)/$$i; \
44		echo $$?; \
45	done
46
47clean-local:
48	rm -f *.out
49