Merge branch 'micro' into maint
[platform/upstream/automake.git] / t / fort2.sh
1 #! /bin/sh
2 # Copyright (C) 2006-2013 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 that AC_FC_SRCEXT(f9x) works as intended:
18 # - $(FCFLAGS_f) will be used
19
20 # Cf. 'fort1.sh' and 'link_f90_only.sh'.
21
22 required=gfortran # Required only in order to run ./configure.
23 . test-init.sh
24
25 mkdir sub
26
27 cat >>configure.ac <<'END'
28 AC_PROG_FC
29 AC_FC_SRCEXT([f90])
30 AC_FC_SRCEXT([f95])
31 AC_FC_SRCEXT([f03])
32 AC_FC_SRCEXT([f08])
33 AC_FC_SRCEXT([blabla])
34 AC_OUTPUT
35 END
36
37 cat >Makefile.am <<'END'
38 AUTOMAKE_OPTIONS = subdir-objects
39 FC = fake-fc
40 bin_PROGRAMS = hello goodbye
41 hello_SOURCES = hello.f90 foo.f95 sub/bar.f95 hi.f03 sub/howdy.f03 \
42                 greets.f08 sub/bonjour.f08
43 goodbye_SOURCES = bye.f95 sub/baz.f90
44 goodbye_FCFLAGS = --gby
45 END
46
47 $ACLOCAL
48 $AUTOMAKE
49 grep '.\$(LINK)'       Makefile.in && exit 1
50 grep '.\$(FCLINK)'     Makefile.in
51 grep '.\$(FCCOMPILE)'  Makefile.in > stdout
52 cat stdout
53 grep -v '\$(FCFLAGS_f' stdout && exit 1
54 grep '.\$(FC.*\$(FCFLAGS_blabla' Makefile.in && exit 1
55
56 sed '/^AC_FC_SRCEXT.*blabla/d' configure.ac >t
57 mv -f t configure.ac
58
59 rm -rf autom4te*.cache
60 $ACLOCAL
61 $AUTOMAKE
62 $AUTOCONF
63
64 ./configure
65
66 touch hello.f90 foo.f95 sub/bar.f95 hi.f03 sub/howdy.f03 greets.f08 \
67       sub/bonjour.f08 bye.f95 sub/baz.f90
68
69 run_make -O -- -n \
70   FCFLAGS_f90=--@90 FCFLAGS_f95=--@95 FCFLAGS_f03=--@03 FCFLAGS_f08=--@08
71 # To make it easier to have  stricter grepping below.
72 sed -e 's/[     ][      ]*/  /g' -e 's/^/ /' -e 's/$/ /' stdout > out
73 cat out
74
75 grep ' fake-fc .* --@90 .* hello\.f90 ' out
76 grep ' fake-fc .* --@95 .* foo\.f95 ' out
77 grep ' fake-fc .* --@95 .* sub/bar\.f95 ' out
78 grep ' fake-fc .* --@03 .* hi\.f03 ' out
79 grep ' fake-fc .* --@03 .* sub/howdy\.f03 ' out
80 grep ' fake-fc .* --@08 .* greets\.f08 ' out
81 grep ' fake-fc .* --@08 .* sub/bonjour\.f08 ' out
82 grep ' fake-fc .* --gby .* --@95 .*[` ]bye\.f95 ' out
83 grep ' fake-fc .* --gby .* --@90 .*[` ]sub/baz\.f90 ' out
84
85 test $(grep -c '.*--gby.*\.f' out) -eq 2
86
87 $EGREP 'fake-fc.*--@(95|03|08).*\.f90' out && exit 1
88 $EGREP 'fake-fc.*--@(90|03|08).*\.f95' out && exit 1
89 $EGREP 'fake-fc.*--@(90|95|08).*\.f03' out && exit 1
90 $EGREP 'fake-fc.*--@(95|95|03).*\.f08' out && exit 1
91
92 :