You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by ma...@apache.org on 2007/10/07 21:57:01 UTC

svn commit: r582687 - /incubator/ivy/core/trunk/build.xml

Author: maartenc
Date: Sun Oct  7 14:56:58 2007
New Revision: 582687

URL: http://svn.apache.org/viewvc?rev=582687&view=rev
Log:
Fixed problem when running junit tests with Ant 1.7.0

Modified:
    incubator/ivy/core/trunk/build.xml

Modified: incubator/ivy/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/build.xml?rev=582687&r1=582686&r2=582687&view=diff
==============================================================================
--- incubator/ivy/core/trunk/build.xml (original)
+++ incubator/ivy/core/trunk/build.xml Sun Oct  7 14:56:58 2007
@@ -410,6 +410,7 @@
     
     <target name="test-internal" depends="build-test, init-tests" unless="skip.test">
         <mkdir dir="${test.xml.dir}" />
+    	
         <junit 
            haltonfailure="off"
            haltonerror="off"
@@ -417,12 +418,14 @@
            failureproperty="test.failed"
            showoutput="no"
            printsummary="yes"
-           includeantruntime="no"
+           includeantruntime="yes"
            fork="true">
             <classpath>
                 <pathelement location="${coverage.classes.dir}" />
                 <fileset dir="${lib.dir}">
                     <include name="*.jar" />
+                	<exclude name="ant.jar" />
+                	<exclude name="ant-*.jar" />
                 </fileset>
                 <pathelement location="${core.classes.build.dir}" />
                 <pathelement location="${ant.classes.build.dir}" />