From 04b61efc536dd288d87fe6fb350c2a3a6fa860cc Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 27 Apr 2010 02:12:21 +0200 Subject: [PATCH] New tests for Automake silent-mode with Fortran. * tests/silentf77.test: New test. * tests/silentf90.test: Likewise. * tests/Makefile.am (TESTS): Updated accordingly. Signed-off-by: Ralf Wildenhues --- ChangeLog | 5 +++ tests/Makefile.am | 2 ++ tests/Makefile.in | 2 ++ tests/silentf77.test | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++ tests/silentf90.test | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 191 insertions(+) create mode 100755 tests/silentf77.test create mode 100755 tests/silentf90.test diff --git a/ChangeLog b/ChangeLog index d85f0ee..1fb4ba8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-06-06 Stefano Lattarini + New tests for Automake silent-mode with Fortran. + * tests/silentf77.test: New test. + * tests/silentf90.test: Likewise. + * tests/Makefile.am (TESTS): Updated accordingly. + New test `silentcxx.test' (Automake silent-mode with C++). * tests/silentcxx.test: New test. * tests/Makefile.am (TESTS): Updated accordingly. diff --git a/tests/Makefile.am b/tests/Makefile.am index 60add39..3a0a776 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -611,6 +611,8 @@ silent6.test \ silent7.test \ silent9.test \ silentcxx.test \ +silentf77.test \ +silentf90.test \ silentlex.test \ silentyacc.test \ sinclude.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 10f2c7f..b344e7c 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -849,6 +849,8 @@ silent6.test \ silent7.test \ silent9.test \ silentcxx.test \ +silentf77.test \ +silentf90.test \ silentlex.test \ silentyacc.test \ sinclude.test \ diff --git a/tests/silentf77.test b/tests/silentf77.test new file mode 100755 index 0000000..39495d4 --- /dev/null +++ b/tests/silentf77.test @@ -0,0 +1,91 @@ +#!/bin/sh +# Copyright (C) 2010 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Check silent-rules mode for Fortran 77. +# Keep this ins sync with the sister test silentf90.test. + +required='gfortran' # FIXME: any working Fortran compiler should be OK! +. ./defs + +set -e + +mkdir sub + +cat >>configure.in <<'EOF' +AM_SILENT_RULES +AC_PROG_F77 +AC_CONFIG_FILES([sub/Makefile]) +AC_OUTPUT +EOF + +cat > Makefile.am <<'EOF' +# Need generic and non-generic rules. +bin_PROGRAMS = foo1 foo2 +foo1_SOURCES = foo.f +foo2_SOURCES = $(foo1_SOURCES) +foo2_FFLAGS = $(AM_FFLAGS) +SUBDIRS = sub +EOF + +cat > sub/Makefile.am <<'EOF' +AUTOMAKE_OPTIONS = subdir-objects +# Need generic and non-generic rules. +bin_PROGRAMS = bar1 bar2 +bar1_SOURCES = bar.f +bar2_SOURCES = $(bar1_SOURCES) +bar2_FFLAGS = $(AM_FFLAGS) +EOF + +cat > foo.f <<'EOF' + program foo + stop + end +EOF +cp foo.f sub/bar.f + +$ACLOCAL +$AUTOMAKE --add-missing +$AUTOCONF + +./configure --enable-silent-rules +$MAKE >stdout || { cat stdout; Exit 1; } +cat stdout + +$EGREP ' (-c|-o)' stdout && Exit 1 +grep 'mv ' stdout && Exit 1 + +grep 'F77 .*foo\.' stdout +grep 'F77 .*bar\.' stdout +grep 'F77LD .*foo1' stdout +grep 'F77LD .*bar1' stdout +grep 'F77LD .*foo2' stdout +grep 'F77LD .*bar2' stdout + +$EGREP '(FC|FCLD) ' stdout && Exit 1 + +# Ensure a clean rebuild. +$MAKE clean + +$MAKE V=1 >stdout || { cat stdout; Exit 1; } +cat stdout + +grep ' -c ' stdout +grep ' -o ' stdout + +$EGREP '(F77|FC|LD) ' stdout && Exit 1 + +$MAKE clean +$MAKE maintainer-clean diff --git a/tests/silentf90.test b/tests/silentf90.test new file mode 100755 index 0000000..9330bdd --- /dev/null +++ b/tests/silentf90.test @@ -0,0 +1,91 @@ +#!/bin/sh +# Copyright (C) 2010 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Check silent-rules mode for Fortran 90. +# Keep this ins sync with the sister test silentf77.test. + +required='gfortran' # FIXME: any working Fortran compiler should be OK! +. ./defs + +set -e + +mkdir sub + +cat >>configure.in <<'EOF' +AM_SILENT_RULES +AC_PROG_FC +AC_CONFIG_FILES([sub/Makefile]) +AC_OUTPUT +EOF + +cat > Makefile.am <<'EOF' +# Need generic and non-generic rules. +bin_PROGRAMS = foo1 foo2 +foo1_SOURCES = foo.f90 +foo2_SOURCES = $(foo1_SOURCES) +foo2_FCFLAGS = $(AM_FCLAGS) +SUBDIRS = sub +EOF + +cat > sub/Makefile.am <<'EOF' +AUTOMAKE_OPTIONS = subdir-objects +# Need generic and non-generic rules. +bin_PROGRAMS = bar1 bar2 +bar1_SOURCES = bar.f90 +bar2_SOURCES = $(bar1_SOURCES) +bar2_FCFLAGS = $(AM_FCLAGS) +EOF + +cat > foo.f90 <<'EOF' + program foo + stop + end +EOF +cp foo.f90 sub/bar.f90 + +$ACLOCAL +$AUTOMAKE --add-missing +$AUTOCONF + +./configure --enable-silent-rules +$MAKE >stdout || { cat stdout; Exit 1; } +cat stdout + +$EGREP ' (-c|-o)' stdout && Exit 1 +grep 'mv ' stdout && Exit 1 + +grep 'FC .*foo\.' stdout +grep 'FC .*bar\.' stdout +grep 'FCLD .*foo1' stdout +grep 'FCLD .*bar1' stdout +grep 'FCLD .*foo2' stdout +grep 'FCLD .*bar2' stdout + +$EGREP '(F77|F77LD) ' stdout && Exit 1 + +# Ensure a clean rebuild. +$MAKE clean + +$MAKE V=1 >stdout || { cat stdout; Exit 1; } +cat stdout + +grep ' -c ' stdout +grep ' -o ' stdout + +$EGREP '(F77|FC|LD) ' stdout && Exit 1 + +$MAKE clean +$MAKE maintainer-clean -- 2.7.4