Annotation of embedaddon/lighttpd/tests/Makefile.am, revision 1.1.1.1

1.1       misho       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-fastcgi.t \
                     45:       mod-proxy.t \
                     46:       mod-redirect.t \
                     47:       mod-rewrite.t \
                     48:       mod-secdownload.t \
                     49:       mod-setenv.t \
                     50:       mod-simplevhost.conf \
                     51:       mod-simplevhost.t \
                     52:       mod-ssi.t \
                     53:       mod-userdir.t \
                     54:       proxy.conf \
                     55:       request.t \
                     56:       symlink.t \
                     57:       var-include-sub.conf \
                     58:       var-include.conf
                     59: 
                     60: TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir)
                     61: 
                     62: EXTRA_DIST=wrapper.sh lighttpd.conf \
                     63:        lighttpd.user \
                     64:        lighttpd.htpasswd \
                     65:        SConscript \
                     66:        $(CONFS) \
                     67:        $(TESTS)
                     68: 
                     69: SUBDIRS=docroot
                     70: 
                     71: leak-check:
                     72:        for i in $(TESTS); do \
                     73:                $(srcdir)/$$i; \
                     74:                echo $$?; \
                     75:        done
                     76: 
                     77: clean-local:
                     78:        rm -f *.out

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