-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
32 lines (27 loc) · 881 Bytes
/
build.xml
File metadata and controls
32 lines (27 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<project name="Deque" default="all">
<property name="srcdir" location="src" />
<property name="destdir" location="build" />
<target name="init">
<mkdir dir="${destdir}" />
</target>
<target name="compile" depends="init">
<javac srcdir="${srcdir}" includeantruntime="true" destdir="${destdir}" />
</target>
<target name="all" depends="compile">
<junit haltonfailure="yes">
<classpath path="${destdir}" />
<formatter type="brief" usefile="false" />
</junit>
</target>
<target name="test" depends="compile">
<junit haltonfailure="yes">
<classpath path="${destdir}" />
<formatter type="brief" usefile="false" />
<test name="de.uni_potsdam.hpi.ArrayDequeTest" />
<test name="de.uni_potsdam.hpi.LinkedDequeTest" />
</junit>
</target>
<target name="clean">
<delete dir="${destdir}" />
</target>
</project>