blob: 8f9e8d4ad7577eb37aef22b36a3126be435761d8 (
plain)
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
33
34
35
|
<?xml version="1.0"?>
<project name="testing-client" default="all" basedir=".">
<import file="../build/build-common.xml"/>
<import file="../bridge/build.xml"/>
<path id="testing-client.test.src.path">
<fileset dir="${basedir}/../lib">
<include name="junit/*.jar"/>
</fileset>
<path refid="testing-client.src.path"/>
</path>
<path id="testing-client.src.path">
<pathelement path="../bridge/bin"/>
<pathelement path="../util/bin"/>
</path>
<target name="compile" depends="init,
bridge.compile,
util.compile">
<srccompile project="testing-client" path="testing-client.src.path"/>
</target>
<target name="test:compile" depends="compile">
<testcompile project="testing-client" path="testing-client.test.src.path"/>
</target>
<target name="test" depends="test:compile">
<testrun project="testing-client" path="testing-client.test.src.path" suite="TestingClientModuleTests"/>
</target>
</project>
|