Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / distcom3.test
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 2003, 2004, 2006, 2010 Free Software
3 # 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, see <http://www.gnu.org/licenses/>.
17
18 # Test to make sure that non-existing common files are distributed
19 # if they are buildable.
20
21 . ./defs || Exit 1
22
23 set -e
24
25 cat > Makefile.am << 'END'
26 README:
27         echo 'I bet you are reading me.' > README
28 END
29
30 # Files required by --gnu
31 : > NEWS
32 : > AUTHORS
33 : > ChangeLog
34
35 $ACLOCAL
36
37 # Should not warn about missing README, since it is a target.
38 $AUTOMAKE --add-missing --gnu >output 2>&1 || { cat output; Exit 1; }
39 cat output
40 grep README output && Exit 1
41
42 sed -n -e '/^DIST_COMMON =.*\\$/ {
43    :loop
44    p
45    n
46    t clear
47    :clear
48    s/\\$/\\/
49    t loop
50    p
51    n
52    }' -e '/^DIST_COMMON =/ p' Makefile.in | grep README
53
54
55 # Should warn about missing README.
56 : > Makefile.am
57 AUTOMAKE_fails --add-missing --gnu
58 grep 'required file.*README.*not found' stderr
59
60 :