Browse Source

add some missing depends

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@639876 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 17 years ago
parent
commit
76d35d045d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/tests/antunit/taskdefs/exec/apply-test.xml

+ 2
- 2
src/tests/antunit/taskdefs/exec/apply-test.xml View File

@@ -697,7 +697,7 @@
<au:assertFileExists file="${nodest}" /> <au:assertFileExists file="${nodest}" />
</target> </target>


<target name="testLsPath" if="ls.can.run">
<target name="testLsPath" if="ls.can.run" depends="xyz">
<apply executable="ls" parallel="false" outputproperty="lsPathOut" <apply executable="ls" parallel="false" outputproperty="lsPathOut"
force="true" dest="${basedir}" append="true" type="both"> force="true" dest="${basedir}" append="true" type="both">
<path path="${env.PATH}" /> <path path="${env.PATH}" />
@@ -714,7 +714,7 @@
</au:assertTrue> </au:assertTrue>
</target> </target>


<target name="testLsPathParallel" if="ls.can.run">
<target name="testLsPathParallel" if="ls.can.run" depends="xyz">
<apply executable="ls" parallel="true" outputproperty="lsPathParallelOut" <apply executable="ls" parallel="true" outputproperty="lsPathParallelOut"
force="true" dest="${basedir}" append="true" type="both"> force="true" dest="${basedir}" append="true" type="both">
<path path="${env.PATH}" /> <path path="${env.PATH}" />


Loading…
Cancel
Save