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 2010/05/14 20:43:20 UTC

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

Author: jglick
Date: Fri May 14 18:43:19 2010
New Revision: 944382

URL: http://svn.apache.org/viewvc?rev=944382&view=rev
Log:
Now that it is not necessary to put junit.jar into $CLASSPATH to run tests, need to make sure -Dtestcase=... works too.

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=944382&r1=944381&r2=944382&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Fri May 14 18:43:19 2010
@@ -1586,7 +1586,7 @@ see ${build.junit.reports} / ${antunit.r
     </condition>
 
     <condition property="junit.testcase" value="${testcase}">
-      <available classname="${testcase}" classpathref="tests-runtime-classpath" />
+      <available classname="${testcase}" classpathref="tests-runtime-classpath" ignoresystemclasses="true"/>
     </condition>
 
     <fail>Cannot locate test ${testcase}