source: other-projects/trunk/gs3-release-maker/apache-ant-1.6.5/src/etc/testcases/core/directoryscanner.xml@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 876 bytes
Line 
1<project name="directoryscanner-test" basedir=".">
2 <property name="tmp.dir" location="tmp"/>
3 <target name="setup">
4 <mkdir dir="${tmp.dir}/alpha/beta/gamma"/>
5 <touch file="${tmp.dir}/alpha/beta/gamma/gamma.xml"/>
6 <touch file="${tmp.dir}/alpha/beta/beta.xml"/>
7 </target>
8 <target name="children-of-excluded-dir-setup" depends="setup">
9 <mkdir dir="${tmp.dir}/delta"/>
10 <touch file="${tmp.dir}/delta/delta.xml"/>
11 </target>
12 <target name="cleanup">
13 <delete dir="${tmp.dir}" quiet="true"/>
14 </target>
15
16 <target name="symlink-setup" depends="setup">
17 <mkdir dir="${tmp.dir}/epsilon/gamma"/>
18 <delete dir="${tmp.dir}/alpha/beta"/>
19 <symlink link="${tmp.dir}/alpha/beta" resource="${tmp.dir}/epsilon"/>
20 <touch file="${tmp.dir}/alpha/beta/gamma/gamma.xml"/>
21 </target>
22</project>
Note: See TracBrowser for help on using the repository browser.