-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-tests.xml
More file actions
28 lines (24 loc) · 941 Bytes
/
build-tests.xml
File metadata and controls
28 lines (24 loc) · 941 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="boost-tests" default="ignore" basedir=".">
<import file="build-junit.xml"/>
<target name="run_tests">
<macro_run_test type="atomic"/>
<macro_run_test type="demo"/>
</target>
<target name="report_tests">
<macro_junit_report test.type="atomic"/>
<macro_junit_report test.type="demo"/>
</target>
<target name="check_tests">
<macro_junit_check failure.property="atomic.tests.failed"/>
<macro_junit_check failure.property="demo.tests.failed"/>
</target>
<macrodef name="macro_run_test">
<attribute name="type"/>
<sequential>
<macro_junit_run tests.refid="@{type}.tests" failure.property="@{type}.tests.failed"
classpath.refid="@{type}.test.classpath"
test.type="@{type}"/>
</sequential>
</macrodef>
</project>