You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jg...@apache.org on 2012/03/05 23:55:35 UTC

svn commit: r1297269 - /ant/core/trunk/build.xml

Author: jglick
Date: Mon Mar  5 22:55:34 2012
New Revision: 1297269

URL: http://svn.apache.org/viewvc?rev=1297269&view=rev
Log:
Permit -Drun.junit.report=false (saved about three seconds off single test run).

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=1297269&r1=1297268&r2=1297269&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Mon Mar  5 22:55:34 2012
@@ -1758,7 +1758,7 @@ see ${build.junit.reports} / ${antunit.r
 
   <target name="junit-report" depends="junit-tests,junit-report-only" />
 
-  <target name="junit-report-only" depends="test-init" if="run.junit.report">
+  <target name="junit-report-only" depends="test-init" if="${run.junit.report}">
     <mkdir dir="${build.junit.reports}" />
     <junitreport todir="${build.junit.reports}">
       <fileset dir="${build.junit.xml}">