Browse Source

reduce the number of different directories tests compile classes to

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1062337 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 14 years ago
parent
commit
0588dc863d
3 changed files with 6 additions and 8 deletions
  1. +2
    -6
      src/tests/antunit/core/projecthelpers-test.xml
  2. +3
    -1
      src/tests/antunit/core/uuencode/uuencode-test.xml
  3. +1
    -1
      src/tests/antunit/filters/replacetokens-test.xml

+ 2
- 6
src/tests/antunit/core/projecthelpers-test.xml View File

@@ -19,8 +19,8 @@

<import file="../antunit-base.xml"/>

<property name="projecthelperin" location="${java.io.tmpdir}/projecthelperinput"/>
<property name="projecthelperout" location="${java.io.tmpdir}/projecthelperoutput"/>
<property name="projecthelperin" location="${input}"/>
<property name="projecthelperout" location="${output}"/>

<target name="compileHelpers">
<mkdir dir="${projecthelperin}/org/apache/tools/ant"/>
@@ -83,8 +83,4 @@
<ant antfile="projecthelpers/build-cross-extension.xml" />
</target>

<target name="tearDown" depends="antunit-base.tearDown">
<delete dir="${projecthelperin}"/>
<delete dir="${projecthelperout}"/>
</target>
</project>

+ 3
- 1
src/tests/antunit/core/uuencode/uuencode-test.xml View File

@@ -16,10 +16,12 @@
limitations under the License.
-->
<project default="all" xmlns:au="antlib:org.apache.ant.antunit">
<import file="../../antunit-base.xml"/>

<property name="ant.build.dir" location="../../../../../build"/>
<property name="my.build.dir"
location="${ant.build.dir}/ant-unit/uuencode-dir"/>
<property name="classes.dir" location="${my.build.dir}/classes"/>
<property name="classes.dir" location="${output}"/>

<available property="sun.uudecode.avail" classname="sun.misc.UUDecoder"/>



+ 1
- 1
src/tests/antunit/filters/replacetokens-test.xml View File

@@ -20,7 +20,7 @@

<import file="../propertyhelpers.xml" as="ph"/>

<target name="tearDown" depends="antunit-base.tearDown,ph.tearDown">
<target name="tearDown" depends="antunit-base.tearDown">
<delete dir="foo"/>
</target>



Loading…
Cancel
Save