Author: peterreilly
Date: Fri Mar 21 14:59:06 2008
New Revision: 639879
URL: http://svn.apache.org/viewvc?rev=639879&view=rev
Log:
comment out the junit collector code (I cannot figure out how to make it work)
Modified:
ant/core/trunk/build.xml
Modified: ant/core/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=639879&r1=639878&r2=639879&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Fri Mar 21 14:59:06 2008
@@ -1595,12 +1595,14 @@
</delete>
<!-- compile the FailedTests class if present -->
<mkdir dir="${junit.collector.dir}"/>
+ <!-- FIXME: removed junit collector build code
<javac srcdir="${junit.collector.dir}"
destdir="${junit.collector.dir}">
<classpath id="failure.cp">
<pathelement location="${build.classes}"/>
<pathelement location="${build.tests}"/>
</classpath>
</javac>
+ -->
<available file="${junit.collector.dir}/${junit.collector.class}.class"
property="hasFailingTests"/>
<!-- run the tests -->
@@ -1628,13 +1630,18 @@
<classpath>
<path refid="tests-classpath"/>
<pathelement location="${junit.collector.dir}"/>
- <path refid="failure.cp"/>
+ <!-- FIXME: remove failure collector build code for the moment
+ <path refid="failure.cp"/>
+ -->
</classpath>
+ <!-- FIXME: remove failure collector build code for the moment
<formatter type="failure" usefile="false"/>
+ -->
<formatter type="xml"/>
<jvmarg line="${test.junit.vmargs}"/>
+ <!-- FIXME: remove failure collector build code for the moment
<test name="${junit.collector.class}" if="hasFailingTests"/>
-
+ -->
<junit-nested />
</junit>
</sequential>