This repository has been archived by the owner on Oct 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
build.xml
92 lines (78 loc) · 2.58 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<project default="compile" name="soot-infoflow">
<property file="ant.settings"/>
<target name="settings">
<fail
message="Please copy ant.settings.template to ant.settings, and set the variables in it."
unless="soot.jar"
/>
</target>
<target name="clean">
<delete quiet="true" dir="build" />
</target>
<target name="compile" depends="settings">
<mkdir dir="build/classes" />
<javac srcdir="src" includeantruntime="true" source="1.6" target="1.6" destdir="build/classes" debug="true">
<classpath>
<pathelement location="${soot.jar}" />
<pathelement location="${heros.jar}" />
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</classpath>
</javac>
</target>
<target name="jar" depends="settings,compile">
<jar destfile="${infoflow.jar}" manifest="META-INF/MANIFEST.MF">
<fileset dir="build/classes"/>
</jar>
</target>
<target name="compiletests" depends="settings,compile">
<mkdir dir="build/classes" />
<javac srcdir="src:test:securiBench" includeantruntime="true" source="1.6" target="1.6" destdir="build/classes" debug="true">
<classpath>
<pathelement location="${soot.jar}" />
<pathelement location="${heros.jar}" />
<pathelement location="build/classes" />
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</classpath>
</javac>
</target>
<target name="runtests" depends="compiletests">
<mkdir dir="reports" />
<junit printsummary="yes" fork="true" maxmemory="4G">
<classpath>
<pathelement location="${soot.jar}" />
<pathelement location="${heros.jar}" />
<pathelement location="build/classes" />
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</classpath>
<jvmarg value="-ea" />
<!-- Make stuff debuggable -->
<!--
<jvmarg value="-Xdebug" />
<jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5432" />
-->
<formatter type="xml" usefile="true" />
<batchtest todir="reports">
<!--
We only run our own tests. SecuriBench Micro relies on too much stuff
we exclude.
-->
<fileset dir="build/classes" includes="soot/jimple/infoflow/test/junit/**/*Tests.class"
excludes="soot/jimple/infoflow/test/junit/JUnitTests.class" />
</batchtest>
</junit>
</target>
<target name="reporttests" depends="runtests">
<junitreport tofile="TESTS-TestSuites.xml" todir="reports">
<fileset dir="reports">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" todir="reports" />
</junitreport>
</target>
</project>