Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/caffeine/prif_private_s.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down