a4d16196b3f0ca6bae15efb8f44118f3ef66bbcf
[platform/upstream/automake.git] / tests / hosts.test
1 #! /bin/sh
2 # Copyright (C) 2004  Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Test to make sure automake correctly recognizes presence of
18 # AC_CANONICAL_(BUILD|HOST|SYSTEM|TARGET), and creates config.* in all
19 # those cases.
20 # From Norman Gray.
21
22 . ./defs || Exit 1
23
24 set -e
25
26 : >Makefile.am
27
28 $ACLOCAL
29 $AUTOMAKE --add-missing
30 test ! -f config.guess
31 test ! -f config.sub
32
33 # Test all four of the AC_CANONICAL_* targets, including _SYSTEM, which is
34 # supported but deprecated by autoconf.
35 for macro in AC_CANONICAL_BUILD AC_CANONICAL_HOST \
36              AC_CANONICAL_SYSTEM AC_CANONICAL_TARGET
37 do
38   rm -rf autom4te.cache config.sub config.guess
39
40   cat >configure.in<<EOF
41 AC_INIT([hosts], [1.0])
42 $macro
43 AM_INIT_AUTOMAKE
44 AC_CONFIG_FILES([Makefile])
45 EOF
46
47   $ACLOCAL
48   $AUTOMAKE --add-missing
49
50   # Show the files which were installed
51   ls
52
53   test -f config.guess
54   test -f config.sub
55 done