* tests/silentf90.test ($required): Require `fortran', not `gfortran'. * tests/silentf77.test ($required): Require `fortran77', not `gfortran'. * tests/silent-many-generic.test ($required): Require `fortran' and `fortran77' rather than `gfortran'. --- ChangeLog | 10 ++++++++++ tests/silent-many-generic.test | 3 +-- tests/silentf77.test | 2 +- tests/silentf90.test | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 80b3c50..08ae5da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2011-05-29 Stefano Lattarini <stefano.lattar...@gmail.com> + + tests: don't require gfortran if any fortran compiler is enough + * tests/silentf90.test ($required): Require `fortran', not + `gfortran'. + * tests/silentf77.test ($required): Require `fortran77', not + `gfortran'. + * tests/silent-many-generic.test ($required): Require `fortran' + and `fortran77' rather than `gfortran'. + 2011-05-27 Stefano Lattarini <stefano.lattar...@gmail.com> tests: improve `ccnoco*.test', better cross-compiling support diff --git a/tests/silent-many-generic.test b/tests/silent-many-generic.test index c81f52c..7d615ac 100755 --- a/tests/silent-many-generic.test +++ b/tests/silent-many-generic.test @@ -22,8 +22,7 @@ # sister test `silent-many-gcc.test', which requires the GNU compilers # and forces the use of gcc depmode. -# FIXME: generic Fortran compilers should suffice here -required='cc c++ gfortran flex yacc' +required='cc c++ fortran fortran77 flex yacc' . ./defs || Exit 1 # Avoids too much code duplication. diff --git a/tests/silentf77.test b/tests/silentf77.test index 75d5777..90a8208 100755 --- a/tests/silentf77.test +++ b/tests/silentf77.test @@ -17,7 +17,7 @@ # 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! +required=fortran77 . ./defs || Exit 1 mkdir sub diff --git a/tests/silentf90.test b/tests/silentf90.test index c85f78f..6a56175 100755 --- a/tests/silentf90.test +++ b/tests/silentf90.test @@ -17,7 +17,7 @@ # 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! +required=fortran . ./defs || Exit 1 mkdir sub -- 1.7.2.3