summaryrefslogtreecommitdiffstats
path: root/Tests/Fortran
diff options
context:
space:
mode:
authorWilliam R. Dieter <william.r.dieter@intel.com>2021-01-15 07:03:34 (GMT)
committerBrad King <brad.king@kitware.com>2021-01-28 14:07:01 (GMT)
commit882baca37b07dde28443c11faf052f35834d0da3 (patch)
tree84de61f21a066c22eb246cb26f14633dd5cb63b6 /Tests/Fortran
parentaedb9add56f09a43755948bf973d7f9893a0a0ea (diff)
downloadCMake-882baca37b07dde28443c11faf052f35834d0da3.zip
CMake-882baca37b07dde28443c11faf052f35834d0da3.tar.gz
CMake-882baca37b07dde28443c11faf052f35834d0da3.tar.bz2
Tests: Update Fortran tests for IntelLLVM
Update checks for the `Intel` compiler id to match `IntelLLVM` too. Signed-off-by: William R. Dieter <william.r.dieter@intel.com>
Diffstat (limited to 'Tests/Fortran')
-rw-r--r--Tests/Fortran/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt
index 929fa4d..1868892 100644
--- a/Tests/Fortran/CMakeLists.txt
+++ b/Tests/Fortran/CMakeLists.txt
@@ -120,7 +120,7 @@ endfunction()
# if the id's match or the compilers are compatible, then
# call the test_fortran_c_interface_module function
if("${CMAKE_Fortran_COMPILER_ID}:${CMAKE_C_COMPILER_ID}" MATCHES
- "(Intel:MSVC|Absoft:GNU)"
+ "(Intel(LLVM)?:MSVC|Absoft:GNU)"
OR ("${CMAKE_Fortran_COMPILER_ID}" STREQUAL "${CMAKE_C_COMPILER_ID}" ))
test_fortran_c_interface_module()
else()