pauldick 02/05/06 11:32:13
Modified: test build.xml
Log:
Added specific target for compiling xsltc api tests.
Revision Changes Path
1.46 +11 -6 xml-xalan/test/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/test/build.xml,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- build.xml 2 May 2002 19:41:18 -0000 1.45
+++ build.xml 6 May 2002 18:32:13 -0000 1.46
@@ -800,21 +800,26 @@
classpathref="compiletest.class.path" />
</target>
- <!-- Note: this target must not depend on XSLTC!
- Obviously now that we're writing XSLTC-specific API tests,
- we'll need a target for those separately. -sc
- -->
<target name="compile" depends="compile.trax">
<echo message="Compile Xalan-J 2.x specific tests" />
<javac srcdir="${test.src.dir}"
destdir="${test.build.dir}"
includes="${test.root}xalanj2/*.java,${test.root}dtm/*.java"
- excludes="${test.root}dtm/xsltcDocCode.java"
debug="${debug}"
classpathref="compiletest.class.path" />
</target>
- <target name="jar" depends="compile"
+ <!-- Target for XSLTC-specific API tests. -->
+ <target name="xsltc.tests" depends="compile">
+ <echo message="Compile XSLTC specific tests" />
+ <javac srcdir="${test.src.dir}"
+ destdir="${test.build.dir}"
+ includes="${test.root}xsltc/*.java"
+ debug="${debug}"
+ classpathref="compiletest.class.path" />
+ </target>
+
+ <target name="jar" depends="compile,xsltc.tests"
description="Build testxsl.jar with all available tests">
<jar jarfile="${testxsl.jar}"
basedir="${test.build.dir}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]