Author: nickboldt
Date: 2010-05-21 22:21:52 -0400 (Fri, 21 May 2010)
New Revision: 22259
Modified:
trunk/build/build.xml
Log:
add move.test.results option
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2010-05-22 02:04:59 UTC (rev 22258)
+++ trunk/build/build.xml 2010-05-22 02:21:52 UTC (rev 22259)
@@ -781,6 +781,14 @@
<fileset dir="${WORKINGDIR}/${COMPONENT}"
includes="**/target/surefire-reports/TEST-*.xml" />
</copy>
+ <if>
+ <isset property="move.test.results" />
+ <then>
+ <delete dir="${WORKINGDIR}/${COMPONENT}"
includes="**/target/surefire-reports" />
+ </then>
+ <else>
+ </else>
+ </if>
</target>
<target name="collect.all.test.results"
unless="no.tests.run">