source: A2P/a2p/test/build.xml @ 3

Last change on this file since 3 was 3, checked in by guillaume, 17 years ago
  • AUTHORS: Ajout des différents contributeurs
  • COPYING: Ajout de la licence GPL v3
  • a2p: Préparation des sources pour leur publication sous GPL
  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1<?xml version="1.0"?>
2<!--
3
4Copyright (c) 2004-2007 - Consultas, PKG.fr
5
6This file is part of A2P.
7
8A2P is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13A2P is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with A2P; if not, write to the Free Software
20Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
22$Id: build.xml 3 2007-10-18 16:20:19Z guillaume $
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
Note: See TracBrowser for help on using the repository browser.