-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
57 lines (45 loc) · 2.02 KB
/
build.xml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<project basedir="." default="clean-test">
<property name="portnum" value="4444" />
<property name="baseurl" value="http://qa.collectionspace.org:8180/collectionspace/ui/core/html/" />
<property name="browser" value="firefox" />
<property name="src.dir" value="test"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="lib.dir" value="lib"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<path id="test.classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
<pathelement location="${classes.dir}" />
</path>
<target name="primaryTabTests" depends="compile">
<junit fork="yes" haltonfailure="yes" printsummary="yes">
<test name="org.collectionspace.qa.PrimaryRecordTests" />
<formatter type="plain" usefile="false" />
<classpath refid="test.classpath" />
<jvmarg value="-Dbaseurl=${baseurl}" />
<jvmarg value="-Dportnum=${portnum}" />
<jvmarg value="-Dbrowser=${browser}" />
</junit>
</target>
<target name="secondaryTabTests" depends="compile">
<junit fork="yes" haltonfailure="yes" printsummary="yes" showoutput="yes">
<test name="org.collectionspace.qa.SecondaryTabTests" />
<formatter type="plain" usefile="false" />
<classpath refid="test.classpath" />
<jvmarg value="-Dbaseurl=${baseurl}" />
<jvmarg value="-Dportnum=${portnum}" />
<jvmarg value="-Dbrowser=${browser}" />
</junit>
</target>
<target name="test" depends="primaryTabTests,secondaryTabTests" />
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="compile">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath"/>
</target>
<target name="clean-test" depends="clean,test" />
</project>