]> granicus.if.org Git - docbook-dsssl/commitdiff
Made the smoketest make target also test a namespaced DocBook
authorMichael Smith <xmldoc@users.sourceforge.net>
Tue, 14 Aug 2007 00:32:51 +0000 (00:32 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Tue, 14 Aug 2007 00:32:51 +0000 (00:32 +0000)
test file (in order to test the single-pass namespace-stripping
support).

xsl/Makefile.tests

index 6f2f425bb5fed5653d15313b181b27b37abbd54e..7baa1b256929f3a841ed5bbb43999dd0d5794df8 100644 (file)
@@ -6,12 +6,16 @@ smoketest-normal:
        for file in $(NORMAL_STYLES); do \
        echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $$file > /dev/null"; \
        $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $$file > /dev/null; \
+       echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $$file > /dev/null"; \
+       $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $$file > /dev/null; \
        done
 
 smoketest-normal-profile:
        for file in $(NORMAL_PROFILE_STYLES); do \
        echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $$file > /dev/null"; \
        $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $$file > /dev/null; \
+       echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $$file > /dev/null"; \
+       $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $$file > /dev/null; \
        done
 
 smoketest-chunk:
@@ -20,6 +24,8 @@ smoketest-chunk:
        for file in $(CHUNK_STYLES) $(HELP_STYLES) $(MAN_STYLES) ; do \
        echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $(DOCBOOK_SVN)/xsl/$$file" ; \
        (cd /tmp/docbook-xsl-smoketest && $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $(DOCBOOK_SVN)/xsl/$$file); \
+       echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $(DOCBOOK_SVN)/xsl/$$file" ; \
+       (cd /tmp/docbook-xsl-smoketest && $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $(DOCBOOK_SVN)/xsl/$$file); \
        done;
        $(RM) -r /tmp/docbook-xsl-smoketest
 
@@ -29,5 +35,7 @@ smoketest-chunk-profile:
        for file in $(CHUNK_PROFILE_STYLES) $(HELP_PROFILE_STYLES) $(MAN_PROFILE_STYLES) ; do \
        echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $(DOCBOOK_SVN)/xsl/$$file" ; \
        (cd /tmp/docbook-xsl-smoketest && $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile.xml $(DOCBOOK_SVN)/xsl/$$file); \
+       echo "$(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $(DOCBOOK_SVN)/xsl/$$file" ; \
+       (cd /tmp/docbook-xsl-smoketest && $(XSLT) $(DOCBOOK_SVN)/releasetools/testfile-ns.xml $(DOCBOOK_SVN)/xsl/$$file); \
        done;
        $(RM) -r /tmp/docbook-xsl-smoketest