From 0706434afea077139d6b9629ccec0181bceb0738 Mon Sep 17 00:00:00 2001 From: "Michael Hirsch, Ph.D" Date: Sun, 28 Jul 2019 22:16:04 -0400 Subject: [PATCH] PGI doesn't have coarray fortran --- test cases/fortran/13 coarray/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test cases/fortran/13 coarray/meson.build b/test cases/fortran/13 coarray/meson.build index e1fb34bd6..3e52dde01 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