You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by pe...@apache.org on 2008/03/21 22:52:11 UTC

svn commit: r639876 - /ant/core/trunk/src/tests/antunit/taskdefs/exec/apply-test.xml

Author: peterreilly
Date: Fri Mar 21 14:52:08 2008
New Revision: 639876

URL: http://svn.apache.org/viewvc?rev=639876&view=rev
Log:
add some missing depends

Modified:
    ant/core/trunk/src/tests/antunit/taskdefs/exec/apply-test.xml

Modified: ant/core/trunk/src/tests/antunit/taskdefs/exec/apply-test.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/taskdefs/exec/apply-test.xml?rev=639876&r1=639875&r2=639876&view=diff
==============================================================================
--- ant/core/trunk/src/tests/antunit/taskdefs/exec/apply-test.xml (original)
+++ ant/core/trunk/src/tests/antunit/taskdefs/exec/apply-test.xml Fri Mar 21 14:52:08 2008
@@ -697,7 +697,7 @@
     <au:assertFileExists file="${nodest}" />
   </target>
 
-  <target name="testLsPath" if="ls.can.run">
+  <target name="testLsPath" if="ls.can.run" depends="xyz">
     <apply executable="ls" parallel="false" outputproperty="lsPathOut"
            force="true" dest="${basedir}" append="true" type="both">
       <path path="${env.PATH}" />
@@ -714,7 +714,7 @@
     </au:assertTrue>
   </target>
 
-  <target name="testLsPathParallel" if="ls.can.run">
+  <target name="testLsPathParallel" if="ls.can.run" depends="xyz">
     <apply executable="ls" parallel="true" outputproperty="lsPathParallelOut"
            force="true" dest="${basedir}" append="true" type="both">
       <path path="${env.PATH}" />