24810b405f32850675851a10774a9cfc452316f4
[platform/upstream/automake.git] / tests / distcom4.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2006  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 config files are distributed, and only once.
18 # This tries to distribute a file from a subdirectory, without
19 # Makefile in that directory.  distcom5.test performs the same
20 # test with a Makefile in the directory.
21 # Also make sure that README appears first in DIST_COMMON.
22
23 . ./defs || Exit 1
24
25 set -e
26
27 cat >> configure.in << 'END'
28    AC_CONFIG_FILES([tests/autoconf:tests/wrapper.in],
29                    [chmod +x tests/autoconf])
30    AC_CONFIG_FILES([tests/autoheader:tests/wrapper.in],
31                    [chmod +x tests/autoheader])
32    AC_CONFIG_FILES([tests/autom4te:tests/wrapper.in],
33                    [chmod +x tests/autom4te])
34    AC_CONFIG_FILES([tests/autoreconf:tests/wrapper.in],
35                    [chmod +x tests/autoreconf])
36    AC_CONFIG_FILES([tests/autoscan:tests/wrapper.in],
37                    [chmod +x tests/autoscan])
38    AC_CONFIG_FILES([tests/autoupdate:tests/wrapper.in],
39                    [chmod +x tests/autoupdate])
40    AC_CONFIG_FILES([tests/ifnames:tests/wrapper.in],
41                    [chmod +x tests/ifnames])
42    AC_OUTPUT
43 END
44
45 mkdir tests
46 : > README
47 : > tests/wrapper.in
48 cat > Makefile.am << 'END'
49 test: distdir
50         test -f $(distdir)/tests/wrapper.in
51 END
52
53 $ACLOCAL
54 $AUTOCONF
55 $AUTOMAKE --add-missing
56 ./configure
57 $MAKE test
58
59 sed -n -e '/^DIST_COMMON =.*\\$/ {
60    :loop
61    p
62    n
63    t clear
64    :clear
65    s/\\$/\\/
66    t loop
67    p
68    n
69    }' -e '/^DIST_COMMON =/ p' Makefile.in > dc.txt
70
71 test 1 = `grep tests dc.txt | wc -l`
72 grep configure dc.txt
73 # README must come first.
74 grep 'DIST_COMMON = README' Makefile.in