diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-07-28 22:16:04 -0400 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-07-30 15:33:09 -0400 |
commit | 0706434afea077139d6b9629ccec0181bceb0738 (patch) | |
tree | 3484f03f44e97c53da49df7db44e478cdbb7fdae | |
parent | d0e78a2534a43a3523e33d516e834a60af3a21ba (diff) | |
download | meson-0706434afea077139d6b9629ccec0181bceb0738.zip meson-0706434afea077139d6b9629ccec0181bceb0738.tar.gz meson-0706434afea077139d6b9629ccec0181bceb0738.tar.bz2 |
PGI doesn't have coarray fortran
-rw-r--r-- | test cases/fortran/13 coarray/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/fortran/13 coarray/meson.build b/test cases/fortran/13 coarray/meson.build index e1fb34b..3e52dde 100644 --- a/test cases/fortran/13 coarray/meson.build +++ b/test cases/fortran/13 coarray/meson.build @@ -4,8 +4,8 @@ project('Fortran coarray', 'fortran', fc = meson.get_compiler('fortran') fcid = fc.get_id() -if fcid == 'pgi' or fcid == 'flang' - error('MESON_SKIP_TEST: At least through: PGI 19.4 and Flang 7.0 do not support Fortran Coarrays.') +if ['pgi', 'flang'].contains(fcid) + error('MESON_SKIP_TEST: At least through PGI 19.4 and Flang 7.1 do not support Fortran Coarrays.') endif # coarray is required because single-image fallback is an intrinsic feature |