curcuru 02/05/08 17:37:20
Modified: test build.xml
Log:
Fix smoketest; remember that xsltc-related targets must still
currently be kept out of the mainline jar/smoketest targets (sorry!)
Revision Changes Path
1.47 +8 -12 xml-xalan/test/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/test/build.xml,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- build.xml 6 May 2002 18:32:13 -0000 1.46
+++ build.xml 9 May 2002 00:37:20 -0000 1.47
@@ -805,21 +805,17 @@
<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 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"
+ <!-- Note that this target must *not* depend on any XSLTC tests,
+ which have to be compiled separately; otherwise the
+ smoketest will fail. Please see compile.xsltc and
+ jar.xsltc targets instead.
+ -->
+ <target name="jar" depends="compile"
description="Build testxsl.jar with all available tests">
<jar jarfile="${testxsl.jar}"
basedir="${test.build.dir}"
@@ -1065,7 +1061,7 @@
description="Compile xsltc native API tests only">
<javac srcdir="${test.src.dir}"
destdir="${test.build.dir}"
- includes="${test.root}xsltc/*.java"
+ includes="${test.root}xsltc/*.java,${test.root}dtm/*.java"
debug="${debug}">
<classpath refid="xsltc.compile.class.path" />
</javac>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]