ilene 2002/10/28 08:53:01
Modified: test build.xml
Log:
Patch from Gordon Chiu ([EMAIL PROTECTED]) for bugzilla #13975.
Create an alltest.conf.xsltc target in test build.xml.
Revision Changes Path
1.55 +55 -2 xml-xalan/test/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/test/build.xml,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- build.xml 4 Oct 2002 20:10:23 -0000 1.54
+++ build.xml 28 Oct 2002 16:53:01 -0000 1.55
@@ -721,6 +721,59 @@
</antcall>
</target>
+ <target name="alltest.conf.xsltc">
+ <property name="alltest.xsltc.resultDir"
value="results-alltest.xsltc" />
+ <property name="alltest.conf.xsltc.resultDir"
value="${alltest.xsltc.resultDir}/conf" />
+ <echo message="About to execute xsltc.conf tests with all flavors,
results into ${alltest.conf.xsltc.resultDir}/..." />
+ <!-- Run full conf test with each major available flavor into
+ specific output directories; note any user options will
+ override for all test calls.
+ Also exclude the currently failing tests in the
+ smoketest if use.excludes is set.
+ -->
+ <condition property="conf.xsltc.excludes"
value="${smoketest.conf.xsltc.excludes}">
+ <equals arg1="${use.excludes}" arg2="true" />
+ </condition>
+ <antcall target="conf.xsltc">
+ <param name="conf.xsltc.flavor" value="trax.systemId"/>
+ <param name="conf.xsltc.excludes"
value="${conf.xsltc.excludes}"/>
+ <param name="conf.xsltc.outputDir"
value="${alltest.conf.xsltc.resultDir}/systemId"/>
+ <param name="conf.xsltc.logFile"
value="${alltest.conf.xsltc.resultDir}/systemId/results.xml"/>
+ </antcall>
+ <antcall target="conf.xsltc">
+ <param name="conf.xsltc.flavor" value="trax.file"/>
+ <param name="conf.xsltc.excludes"
value="${conf.xsltc.excludes}"/>
+ <param name="conf.xsltc.outputDir"
value="${alltest.conf.xsltc.resultDir}/file"/>
+ <param name="conf.xsltc.logFile"
value="${alltest.conf.xsltc.resultDir}/file/results.xml"/>
+ </antcall>
+ <antcall target="conf.xsltc">
+ <param name="conf.xsltc.flavor" value="trax.dom"/>
+ <!-- Note DOM always has additional exclusions in conf tests-->
+ <param name="conf.xsltc.excludes"
value="${trax.dom.excludes};${conf.xsltc.excludes}"/>
+ <param name="conf.xsltc.outputDir"
value="${alltest.conf.xsltc.resultDir}/dom"/>
+ <param name="conf.xsltc.logFile"
value="${alltest.conf.xsltc.resultDir}/dom/results.xml"/>
+ </antcall>
+ <antcall target="conf.xsltc">
+ <param name="conf.xsltc.flavor" value="trax.sax"/>
+ <param name="conf.xsltc.excludes"
value="${conf.xsltc.excludes}"/>
+ <param name="conf.xsltc.outputDir"
value="${alltest.conf.xsltc.resultDir}/sax"/>
+ <param name="conf.xsltc.logFile"
value="${alltest.conf.xsltc.resultDir}/sax/results.xml"/>
+ </antcall>
+ <antcall target="conf.xsltc">
+ <param name="conf.xsltc.flavor" value="trax.localPath"/>
+ <param name="conf.xsltc.excludes"
value="${conf.xsltc.excludes}"/>
+ <param name="conf.xsltc.outputDir"
value="${alltest.conf.xsltc.resultDir}/localPath"/>
+ <param name="conf.xsltc.logFile"
value="${alltest.conf.xsltc.resultDir}/localPath/results.xml"/>
+ </antcall>
+ <antcall target="conf.xsltc">
+ <param name="conf.xsltc.flavor" value="trax.stream"/>
+ <param name="conf.xsltc.excludes"
value="${conf.xsltc.excludes}"/>
+ <param name="conf.xsltc.outputDir"
value="${alltest.conf.xsltc.resultDir}/stream"/>
+ <param name="conf.xsltc.logFile"
value="${alltest.conf.xsltc.resultDir}/stream/results.xml"/>
+ </antcall>
+ </target>
+
+
<target name="test"
depends="alltest"
description="Alias for alltest">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]