(|l)gpl-2.[01].tex: Remove the `\renewcommand{\theenumi}...' comments.
[cfd] / testsuite.at
CommitLineData
74c50df9
MW
1dnl -*-autotest-*-
2dnl
3dnl Generic test framework
4dnl
5dnl (c) 2008 Straylight/Edgeware
6dnl
7
8dnl----- Licensing notice ---------------------------------------------------
9dnl
10dnl This file is part of the Common Files Distribution (`common').
11dnl
12dnl `Common' is free software; you can redistribute it and/or modify
13dnl it under the terms of the GNU General Public License as published by
14dnl the Free Software Foundation; either version 2 of the License, or
15dnl (at your option) any later version.
16dnl
17dnl `Common' is distributed in the hope that it will be useful,
18dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20dnl GNU General Public License for more details.
21dnl
22dnl You should have received a copy of the GNU General Public License
23dnl along with `common'; if not, write to the Free Software Foundation,
24dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26AT_INIT
27
28m4_define([TESTS], [dnl
29 m4_pushdef([SRCDIR], [$abs_srcdir/$1])
30 m4_pushdef([BUILDDIR], [$abs_builddir/$1])
31 m4_include([$1/$2])
32 m4_popdef([BUILDDIR])
33 m4_popdef([SRCDIR])
34])
35m4_include([tests.m4])
36
37dnl----- That's all, folks --------------------------------------------------