summaryrefslogtreecommitdiff
path: root/tests/reports/Makefile.am
blob: af413f0849b32088f978ce1b598e5c2fd15f8a29 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
## Process this file with automake to produce Makefile.in

$(top_builddir)/xsltproc/xsltproc:
	@(cd ../../xsltproc ; $(MAKE) xsltproc)

EXTRA_DIST = \
	cmdlineparams.xml cmdlineparams.xsl cmdlineparams.out \
	tst-1.xml tst-1.xsl tst-1.out tst-1.err \
	tst-2.xml tst-2.xsl tst-2.out tst-2.err \
	undefvar.xml undefvar.xsl undefvar.out undefvar.err \
	recglobparam.xsl recglobvar.xsl reclocparam.xsl reclocvar.xsl \
	recglobparam.xml recglobvar.xml reclocparam.xml reclocvar.xml 

CLEANFILES = .memdump

valgrind:
	@echo '## Running the regression tests under Valgrind'
	$(MAKE) CHECKER='valgrind -q' tests

test tests: $(top_builddir)/xsltproc/xsltproc
	@echo '## Running reports tests'
	@(echo > .memdump)
	-@(for i in $(srcdir)/../docs/*.xml ; do \
	  if [ -d $$i ] ; then continue ; fi ; \
	  doc=`basename $$i .xml` ; \
	  for j in $(srcdir)/$$doc*.xsl ; do \
	  if [ ! -f $$j ] ; then continue ; fi ; \
	  if [ -d $$j ] ; then continue ; fi ; \
	  name=`basename $$j .xsl`; \
	  out=$(srcdir)/"$$name".out; \
	  err=$(srcdir)/"$$name".err; \
	  log=`$(CHECKER) $(top_builddir)/xsltproc/xsltproc \
	              --stringparam test passed_value \
		      --stringparam test2 passed_value2 \
	              $$j $$i > result.$$name \
	              2> err.$$name ; \
	  if [ ! -f $$out ] ; then \
	  	cp result.$$name $$out ; \
		if [ -s err.$$name ] ; then \
			cp err.$$name $$err ; \
		fi ; \
	  else \
	  	diff $$out result.$$name; \
		if [ -s $$err ] ; then \
	  		diff $$err err.$$name; \
		else \
			diff /dev/null err.$$name; \
		fi ; \
	  fi ; \
	  grep "MORY ALLO" .memdump  | grep -v "MEMORY ALLOCATED : 0" || true`;\
	  if [ -n "$$log" ] ; then \
	  	echo $$name result ; \
		echo "$$log" ; \
	  fi ; \
	  rm -f result.$$name err.$$name; \
	  done ; done)