fort2.sh 2.7 KB

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