province abbreviation patch - issue 724
[civicrm-core.git] / tools / scripts / build.xml
1 <?xml version="1.0"?>
2
3 <project name="CiviCRM" basedir="." default="report">
4 <target name="report">
5 <phpunitreport infile="../tests/reports/logfile.xml"
6 styledir="phpunit-xslt"
7 format="frames"
8 todir="../tests/reports/results"/>
9 </target>
10 <target name="api_v2">
11 <phpunitreport infile="../tests/reports/logfile.api_v2.xml"
12 styledir="phpunit-xslt"
13 format="frames"
14 todir="../tests/reports/results-api_v2/"/>
15 </target>
16 <target name="api_v3">
17 <phpunitreport infile="../tests/reports/logfile.api_v3.xml"
18 styledir="phpunit-xslt"
19 format="frames"
20 todir="../tests/reports/results-api_v3/"/>
21 </target>
22 <target name="CRM">
23 <phpunitreport infile="../tests/reports/logfile.CRM.xml"
24 styledir="phpunit-xslt"
25 format="frames"
26 todir="../tests/reports/results-CRM/"/>
27 </target>
28 <target name="WebTest">
29 <phpunitreport infile="../tests/reports/logfile.WebTest.xml"
30 styledir="phpunit-xslt"
31 format="frames"
32 todir="../tests/reports/results-Web/"/>
33 </target>
34 </project>