aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/ant/apache-ant-1.9.6/src/etc/testcases/buildfiletest-base.xml
blob: fc1e8b0b0c4e39d3f2244805bdbbdb46d9255ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
<project name="buildfiletest-base">
  <property name="buildfiletest.tmpdir" location="${java.io.tmpdir}"/>
  <property name="input" location="${buildfiletest.tmpdir}/testinput_${ant.processid}_${ant.threadname}"/>
  <property name="output" location="${buildfiletest.tmpdir}/testoutput_${ant.processid}_${ant.threadname}"/>

  <target name="tearDown">
    <delete dir="${input}"/>
    <delete dir="${output}"/>
  </target>
  
</project>