1 | <?xml version="1.0"?> |
---|
2 | <!-- |
---|
3 | |
---|
4 | Copyright (c) 2004-2007 - Consultas, PKG.fr |
---|
5 | |
---|
6 | This file is part of A2P. |
---|
7 | |
---|
8 | A2P is free software; you can redistribute it and/or modify |
---|
9 | it under the terms of the GNU General Public License as published by |
---|
10 | the Free Software Foundation; either version 2 of the License, or |
---|
11 | (at your option) any later version. |
---|
12 | |
---|
13 | A2P is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | GNU General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with A2P; if not, write to the Free Software |
---|
20 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
21 | |
---|
22 | $Id: build.xml 3 2007-10-18 16:20:19Z root $ |
---|
23 | |
---|
24 | --> |
---|
25 | <project name="A2P-Tests" default="Do Tests"> |
---|
26 | |
---|
27 | <target name="Do Tests" > |
---|
28 | <exec executable="perl"> |
---|
29 | <env key="LANG" value="C" /> |
---|
30 | <env key="A2P_PATH" value="${basedir}/.." /> |
---|
31 | <arg line="${basedir}/a2p-test.pl"/> |
---|
32 | </exec> |
---|
33 | </target> |
---|
34 | |
---|
35 | <target name="Do Verbose Tests" > |
---|
36 | <exec executable="perl"> |
---|
37 | <env key="SHOW_TRIES" value="1" /> |
---|
38 | <env key="DEBUG" value="1" /> |
---|
39 | <env key="LANG" value="C" /> |
---|
40 | <env key="A2P_PATH" value="${basedir}/.." /> |
---|
41 | <arg line="${basedir}/a2p-test.pl"/> |
---|
42 | </exec> |
---|
43 | </target> |
---|
44 | |
---|
45 | </project> |
---|
46 | |
---|