1 | # Validation suite for Autoconf -*- Autotest -*-
|
---|
2 |
|
---|
3 | # Copyright (C) 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
|
---|
4 | #
|
---|
5 | # This program is free software; you can redistribute it and/or modify
|
---|
6 | # it under the terms of the GNU General Public License as published by
|
---|
7 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
8 | # any later version.
|
---|
9 | #
|
---|
10 | # This program is distributed in the hope that it will be useful,
|
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | # GNU General Public License for more details.
|
---|
14 | #
|
---|
15 | # You should have received a copy of the GNU General Public License
|
---|
16 | # along with this program; if not, write to the Free Software
|
---|
17 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
---|
18 | # 02110-1301, USA.
|
---|
19 |
|
---|
20 | # Run the tests from the lowest level to the highest level, and from
|
---|
21 | # the most selective to the easiest.
|
---|
22 |
|
---|
23 | # The executables.
|
---|
24 | # Even the tests on M4sugar and M4sh use `autoconf', so check it first.
|
---|
25 | m4_include([tools.at])
|
---|
26 |
|
---|
27 | # M4sugar.
|
---|
28 | m4_include([m4sugar.at])
|
---|
29 |
|
---|
30 | # M4sh.m4.
|
---|
31 | m4_include([m4sh.at])
|
---|
32 |
|
---|
33 | # Autotest.
|
---|
34 | m4_include([autotest.at])
|
---|
35 |
|
---|
36 | # Autoconf base macros.
|
---|
37 | m4_include([base.at])
|
---|
38 |
|
---|
39 | # Testing config.status
|
---|
40 | # ---------------------
|
---|
41 | # Actually should be named config.status.at but I fear problems with
|
---|
42 | # the name. Does no `checking...' at all, but exercises only code
|
---|
43 | # which following section use too. Hence, run it first.
|
---|
44 | m4_include([torture.at])
|
---|
45 |
|
---|
46 | # Checking AC_PROG_CC, AC_COMPILE_IFELSE etc.
|
---|
47 | m4_include([compile.at])
|
---|
48 |
|
---|
49 | # Language support.
|
---|
50 | m4_include([aclang.at])
|
---|
51 | m4_include([c.at])
|
---|
52 | m4_include([acc.at])
|
---|
53 | m4_include([fortran.at])
|
---|
54 | m4_include([acfortran.at])
|
---|
55 |
|
---|
56 | # Checking that AC_CHECK_FOO macros work properly.
|
---|
57 | m4_include([semantics.at])
|
---|
58 |
|
---|
59 | # Blind testing the macros.
|
---|
60 | # Include them as is suggested for a `configure.ac', as looking for
|
---|
61 | # for types requires looking for headers etc.
|
---|
62 | m4_include([acgeneral.at])
|
---|
63 | m4_include([acstatus.at])
|
---|
64 | m4_include([acautoheader.at])
|
---|
65 | m4_include([acautoupdate.at])
|
---|
66 | m4_include([acspecific.at])
|
---|
67 | m4_include([acprograms.at])
|
---|
68 | m4_include([acheaders.at])
|
---|
69 | m4_include([actypes.at])
|
---|
70 | m4_include([acfunctions.at])
|
---|
71 | m4_include([aclibs.at])
|
---|
72 |
|
---|
73 | # Compatibility with foreign tools.
|
---|
74 | m4_include([foreign.at])
|
---|
75 |
|
---|
76 | # Autoscan test
|
---|
77 | m4_include([autoscan.at])
|
---|