Author: mmerz
Date: Wed Oct 27 14:28:52 2004
New Revision: 55741
Modified:
incubator/beehive/trunk/wsm/drt/build.xml
Log:
The WSM DRT will now finish the test run before halting the build if a failure
occurs, thus preventing one failure from masking others.
Contributor: Jonathan Colwell
Modified: incubator/beehive/trunk/wsm/drt/build.xml
==============================================================================
--- incubator/beehive/trunk/wsm/drt/build.xml (original)
+++ incubator/beehive/trunk/wsm/drt/build.xml Wed Oct 27 14:28:52 2004
@@ -102,7 +102,7 @@
<target name="run-drt">
<echo message="** junit logfiles written to ${drt.logs} **" />
- <junit haltonfailure="on" printsummary="on" tempdir="${build.dir}"
fork="yes">
+ <junit failureproperty="wsmdrtfailed" printsummary="on"
tempdir="${build.dir}" fork="yes">
<classpath>
<pathelement location= "${build.tests}"/>
<path refid="drt.classpath"/>
@@ -116,6 +116,7 @@
</fileset>
</batchtest>
</junit>
+ <fail if="wsmdrtfailed">One or more tests in the WSM DRT failed.</fail>
</target>
<target name="drt" >