aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: 0f90aa742505eaf1c19d643e20b8644f0a952d43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
VMOD_VTC = \
 test01.vtc\
 test03.vtc\
 time00.vtc

VMOD_VTI = \
 test00.vti\
 test02.vti

BUILT_TESTS = $(VMOD_VTI:.vti=.vtc)

VMOD_TESTS = \
 test00.vti\
 test01.vtc\
 test02.vti\
 test03.vtc\
 time00.vtc

.vti.vtc:
	sed 's/^#VARNISH$(VARNISHVERSION)#//' $< > $@

EXTRA_DIST=$(VMOD_VTC) $(VMOD_VTI)
CLEANFILES=$(BUILT_TESTS)

distclean-local:
	rm -fr tbf

check: $(BUILT_TESTS)
	for t in $(VMOD_TESTS); do \
	    n=$${t%%.vti}; \
	    if [ $$n != $$t ]; then \
		t=$(abs_builddir)/$${n}.vtc;\
	    else \
		t=$(abs_srcdir)/$$t;\
	    fi; \
	    $(VARNISHSRC)/bin/varnishtest/varnishtest \
                    -Dvarnishd=$(VARNISHSRC)/bin/varnishd/varnishd \
	            -Dvmod_topsrc=$(abs_top_srcdir) \
                    -Dvmod_topbuild=$(abs_top_builddir) $$t; \
        done

Return to:

Send suggestions and report system problems to the System administrator.