File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / lighttpd / tests / Makefile.am
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Nov 2 10:35:00 2016 UTC (7 years, 8 months ago) by misho
Branches: lighttpd, MAIN
CVS tags: v1_4_41p8, HEAD
lighttpd 1.4.41

    1: # lighttpd.conf and conformance.pl expect this directory
    2: testdir=$(srcdir)/tmp/lighttpd/
    3: 
    4: if CHECK_WITH_FASTCGI
    5: check_PROGRAMS=fcgi-auth fcgi-responder
    6: 
    7: fcgi_auth_SOURCES=fcgi-auth.c
    8: fcgi_auth_LDADD=-lfcgi
    9: 
   10: fcgi_responder_SOURCES=fcgi-responder.c
   11: fcgi_responder_LDADD=-lfcgi
   12: endif
   13: 
   14: TESTS=\
   15: 	prepare.sh \
   16: 	run-tests.pl \
   17: 	cleanup.sh
   18: 
   19: CONFS=\
   20: 	404-handler.conf \
   21: 	bug-06.conf \
   22: 	bug-12.conf \
   23: 	cachable.t \
   24: 	condition.conf \
   25: 	core-404-handler.t \
   26: 	core-condition.t \
   27: 	core-keepalive.t \
   28: 	core-request.t \
   29: 	core-response.t \
   30: 	core-var-include.t \
   31: 	core.t \
   32: 	fastcgi-10.conf \
   33: 	fastcgi-13.conf \
   34: 	fastcgi-auth.conf \
   35: 	fastcgi-responder.conf \
   36: 	LightyTest.pm \
   37: 	lowercase.conf \
   38: 	lowercase.t \
   39: 	mod-access.t \
   40: 	mod-auth.t \
   41: 	mod-cgi.t \
   42: 	mod-compress.conf \
   43: 	mod-compress.t \
   44: 	mod-extforward.conf \
   45: 	mod-extforward.t \
   46: 	mod-fastcgi.t \
   47: 	mod-proxy.t \
   48: 	mod-redirect.t \
   49: 	mod-rewrite.t \
   50: 	mod-secdownload.t \
   51: 	mod-setenv.t \
   52: 	mod-simplevhost.conf \
   53: 	mod-simplevhost.t \
   54: 	mod-ssi.t \
   55: 	mod-userdir.t \
   56: 	proxy.conf \
   57: 	request.t \
   58: 	symlink.t \
   59: 	var-include-sub.conf \
   60: 	var-include.conf
   61: 
   62: TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir)
   63: 
   64: EXTRA_DIST=\
   65: 	$(CONFS) \
   66: 	$(TESTS) \
   67: 	CMakeLists.txt \
   68: 	lighttpd.conf \
   69: 	lighttpd.htpasswd \
   70: 	lighttpd.user \
   71: 	SConscript \
   72: 	wrapper.sh
   73: 
   74: SUBDIRS=docroot
   75: 
   76: leak-check:
   77: 	for i in $(TESTS); do \
   78: 		$(srcdir)/$$i; \
   79: 		echo $$?; \
   80: 	done
   81: 
   82: clean-local:
   83: 	rm -f *.out

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>