Support more C++ file extensions for MSVC in the compile script.
[platform/upstream/automake.git] / tests / pr220.test
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 2004, 2008  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 2, 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 for PR automake/220.
18
19 required=gcc
20 . ./defs || Exit 1
21
22 set -e
23
24 cat >main.c <<EOF
25 int main() { return 0; }
26 EOF
27
28 cat > Makefile.am << 'EOF'
29 if NEVER_TRUE
30 NEVER_DEFINED = missingfile.c
31 endif
32
33 bin_PROGRAMS = main
34 main_SOURCES = main.c $(NEVER_DEFINED)
35 EOF
36
37 cat >> configure.in << 'EOF'
38 AC_PROG_CC
39 AC_ARG_ENABLE(foo,
40 [  --enable-foo          Enable foo],
41 [ if test "foo" = "bar" ; then
42     AM_CONDITIONAL(NEVER_TRUE, true)
43   else
44     AM_CONDITIONAL(NEVER_TRUE, false)
45   fi
46 ])
47 AC_OUTPUT
48 EOF
49
50 mkdir build
51
52 $ACLOCAL
53 $AUTOCONF
54 $AUTOMAKE -a
55
56 cd build
57 # configure should fail since we've done something invalid.
58 ../configure 2>stderr && { cat stderr >&2; Exit 1; }
59 cat stderr >&2
60 grep NEVER_TRUE stderr