vgritsenko 2003/08/08 16:03:26
Modified: . build.xml
Log:
Removed test-configuration.props and PropertyManager - no such file and no
such class found.
Added plain formatter to junit to see errors/exceptions
Revision Changes Path
1.57 +16 -20 xml-xindice/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xindice/build.xml,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- build.xml 8 Aug 2003 13:15:42 -0000 1.56
+++ build.xml 8 Aug 2003 23:03:26 -0000 1.57
@@ -189,9 +189,9 @@
<!--
<jvmarg
value="-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"/>
<jvmarg
value="-Dorg.apache.commons.logging.simplelog.defaultlog=debug"/>
- <formatter type="plain" usefile="no"/>
-->
+ <formatter type="plain" usefile="no"/>
<formatter type="xml"/>
<test name="org.apache.xindice.UnitTests"
outfile="${test.report.dir}/org.apache.xindice.UnitTests"/>
@@ -210,13 +210,12 @@
<!--
<jvmarg
value="-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"/>
<jvmarg
value="-Dorg.apache.commons.logging.simplelog.defaultlog=debug"/>
- <formatter type="plain" usefile="no"/>
-->
- <test
name="org.apache.xindice.client.xmldb.resources.BinaryResourceTest"
outfile="${test.report.dir}/org.apache.xindice.client.xmldb.resources.BinaryResourceTest"/>
-
+ <formatter type="plain" usefile="no"/>
<formatter type="xml"/>
+ <test
name="org.apache.xindice.client.xmldb.resources.BinaryResourceTest"
outfile="${test.report.dir}/org.apache.xindice.client.xmldb.resources.BinaryResourceTest"/>
<classpath>
<path refid="project.class.path"/>
<pathelement location="${test.build.dir}"/>
@@ -226,9 +225,8 @@
<target name="test-integration-embed" depends="test-build,
test-validate">
<junit fork="yes" printsummary="yes" haltonfailure="no">
- <jvmarg
value="-DPropertyManager.file=${test.dir}/config/test-configuration.props"/>
<jvmarg value="-Dxindice.home=${basedir}"/>
- <jvmarg value="-Dxindice.db.home=${basedir}"/>
+ <jvmarg value="-Dxindice.db.home=${basedir}/build/test-embed"/>
<jvmarg
value="-Dxindice.configuration=${basedir}/config/system.xml"/>
<!-- to show debug logging on screen comment this line and
uncomment the next block -->
@@ -242,12 +240,11 @@
<formatter type="plain" usefile="no"/>
<formatter type="xml"/>
+ <test name="org.apache.xindice.IntegrationEmbedTests"
outfile="${test.report.dir}/org.apache.xindice.IntegrationEmbedTests"/>
<classpath>
<path refid="project.class.path"/>
<pathelement location="${test.build.dir}"/>
</classpath>
-
- <test name="org.apache.xindice.IntegrationEmbedTests"
outfile="${test.report.dir}/org.apache.xindice.IntegrationEmbedTests"/>
</junit>
</target>
@@ -268,24 +265,24 @@
<!--
<jvmarg
value="-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"/>
<jvmarg
value="-Dorg.apache.commons.logging.simplelog.defaultlog=debug"/>
- <formatter type="plain" usefile="no"/>
-->
+ <formatter type="plain" usefile="no"/>
+ <formatter type="xml" />
+
+ <test name="org.apache.xindice.IntegrationXmlRpcTests"
outfile="${test.report.dir}/org.apache.xindice.IntegrationXmlRpcTests"/>
<classpath>
<path refid="project.class.path"/>
<pathelement location="${test.build.dir}"/>
</classpath>
-
- <formatter type="xml" />
-
- <test name="org.apache.xindice.IntegrationXmlRpcTests"
outfile="${test.report.dir}/org.apache.xindice.IntegrationXmlRpcTests"/>
</junit>
</target>
<target name="test-integration-managed" depends="test-build,
test-validate">
<junit fork="yes" printsummary="yes" haltonfailure="no">
- <jvmarg
value="-DPropertyManager.file=${test.dir}/config/test-configuration.props"/>
<jvmarg value="-Dxindice.home=${basedir}"/>
+ <jvmarg value="-Dxindice.db.home=${basedir}/build/test-managed"/>
+ <jvmarg
value="-Dxindice.configuration=${basedir}/config/system.xml"/>
<!-- to show debug logging on screen comment this line and
uncomment the next block -->
<jvmarg
value="-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog"/>
@@ -293,17 +290,16 @@
<!--
<jvmarg
value="-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"/>
<jvmarg
value="-Dorg.apache.commons.logging.simplelog.defaultlog=debug"/>
- <formatter type="plain" usefile="no"/>
-->
+ <formatter type="plain" usefile="no"/>
+ <formatter type="xml"/>
+
+ <test name="org.apache.xindice.IntegrationManagedTests"
outfile="${test.report.dir}/org.apache.xindice.IntegrationManagedTests.xml"/>
<classpath>
<path refid="project.class.path"/>
<pathelement location="${test.build.dir}"/>
</classpath>
-
- <formatter type="xml"/>
-
- <test name="org.apache.xindice.IntegrationManagedTests"
outfile="${test.report.dir}/org.apache.xindice.IntegrationManagedTests.xml"/>
</junit>
</target>