From 216c61d2b19b11dd004613d2c83eb1e16212dad1 Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Tue, 23 Jun 2026 16:26:34 -0700 Subject: [PATCH 1/2] CI: Update known failure count for flang-latest With the merge of https://github.com/llvm/llvm-project/pull/202450 flang-latest now passes the validation checks for team_type representation. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 60668032..d1240055 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -329,7 +329,7 @@ jobs: fi if [ "${NATIVE_MULTI_IMAGE}" == true ] ; then if [[ $COMPILER_VERSION == latest ]] ; then - echo "FFLAGS=$FFLAGS -fcoarray -DHAVE_COARRAY -DIGNORE_FAILURES=11" >> "$GITHUB_ENV" + echo "FFLAGS=$FFLAGS -fcoarray -DHAVE_COARRAY -DIGNORE_FAILURES=9" >> "$GITHUB_ENV" else echo "FFLAGS=$FFLAGS -fcoarray -DIGNORE_FAILURES=8" >> "$GITHUB_ENV" fi From 90cdbe40973fa2e071a69b78ef39701be6b8dbf9 Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Wed, 24 Jun 2026 07:59:13 -0700 Subject: [PATCH 2/2] prif_private_s: Fix a typo in an error message --- src/caffeine/prif_private_s.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caffeine/prif_private_s.F90 b/src/caffeine/prif_private_s.F90 index 276213c2..f732305a 100644 --- a/src/caffeine/prif_private_s.F90 +++ b/src/caffeine/prif_private_s.F90 @@ -596,7 +596,7 @@ recursive function team_check(team, known_active, cycle_check) result(result_) call assert_always(info%team_number == -1, "invalid team_number in initial team descriptor") call assert_always(.not. associated(info%parent_team), "invalid parent_team in initial team descriptor") else ! non-initial team, have parent team - call assert_always(info%team_number > 0, "invalid team_number in initial team descriptor") + call assert_always(info%team_number > 0, "invalid team_number in non-initial team descriptor") call assert_always(associated(info%parent_team), "invalid parent_team in team descriptor") end if