tests/fortran/9 cpp: It's okay to link ICL and ifort

This test currently assumes that the fortran compiler is gfotran, and
if we're not using g++ it skips. This patch changes it to skip if the
fotran compiler and the c++ compiler aren't the same family. This still
may skip in some cases it shouldn't (clang and gfort probably work fine
on windows), but it does enable ifort + ICL. Which is hte point.
This commit is contained in:
Dylan Baker 2019-05-10 12:42:44 -07:00
parent 0dc88487dd
commit 23d2311d12
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ if cpp.get_id() == 'clang'
error('MESON_SKIP_TEST Clang C++ does not find -lgfortran for some reason.')
endif
if build_machine.system() == 'windows' and cpp.get_id() != 'gnu'
if build_machine.system() == 'windows' and cpp.get_id() != fc.get_id()
error('MESON_SKIP_TEST mixing gfortran with non-GNU C++ does not work.')
endif