Merge branch 'minor'
[automake.git] / t / fort2.sh
blob00728d36056cfac9f60fd1e20f122eebc3bdc144
1 #! /bin/sh
2 # Copyright (C) 2006-2017 Free Software Foundation, Inc.
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.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Test that AC_FC_SRCEXT(f9x) works as intended:
18 # - $(FCFLAGS_f) will be used
20 # Cf. 'fort1.sh' and 'link_f90_only.sh'.
22 required=gfortran # Required only in order to run ./configure.
23 . test-init.sh
25 mkdir sub
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
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
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
56 sed '/^AC_FC_SRCEXT.*blabla/d' configure.ac >t
57 mv -f t configure.ac
59 rm -rf autom4te*.cache
60 $ACLOCAL
61 $AUTOMAKE
62 $AUTOCONF
64 ./configure
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
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 $PERL -e '
73 undef $/;
74 $_ = <>;
75 s/[^\\]\\\n/ /g;
76 s/^/ /;
77 s/\n/ \n /g;
78 s/[ \t]+/ /g;
79 s/\n\s*\z/\n/;
80 print;
81 ' <stdout >out
82 cat out
84 grep ' fake-fc .* --@90 .* hello\.f90 ' out
85 grep ' fake-fc .* --@95 .* foo\.f95 ' out
86 grep ' fake-fc .* --@95 .* sub/bar\.f95 ' out
87 grep ' fake-fc .* --@03 .* hi\.f03 ' out
88 grep ' fake-fc .* --@03 .* sub/howdy\.f03 ' out
89 grep ' fake-fc .* --@08 .* greets\.f08 ' out
90 grep ' fake-fc .* --@08 .* sub/bonjour\.f08 ' out
91 grep ' fake-fc .* --gby .* --@95 .*[` ]bye\.f95 ' out
92 grep ' fake-fc .* --gby .* --@90 .*[` ]sub/baz\.f90 ' out
94 test $(grep -c '.*--gby.*\.f' out) -eq 2
96 $EGREP 'fake-fc.*--@(95|03|08).*\.f90' out && exit 1
97 $EGREP 'fake-fc.*--@(90|03|08).*\.f95' out && exit 1
98 $EGREP 'fake-fc.*--@(90|95|08).*\.f03' out && exit 1
99 $EGREP 'fake-fc.*--@(95|95|03).*\.f08' out && exit 1