summaryrefslogtreecommitdiff
path: root/tests/namespaces/Makefile.am
blob: 3cc72561f2ad88c8d6a8cc14dab04cfd2b8f1a14 (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
## Process this file with automake to produce Makefile.in

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

EXTRA_DIST = \
    tst.xml tst.xsl tst.out \
    tst2.xml tst2.xsl tst2.out \
    tst3.xml tst3.xsl tst3.out \
    extra.out extra.xml extra.xsl \
    extra2.out extra2.xml extra2.xsl

all:

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

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