From 32d2b1b85e900e45aa6ed7775a5f8278df80a04c Mon Sep 17 00:00:00 2001 From: Abishek Gopal Date: Wed, 1 Apr 2026 15:45:24 -0600 Subject: [PATCH] Fix calls to mpas_halo_exch_group_full_halo_exch in mpas_halo_testing This commit introduces explicit argument names for the optional argument iErr in calls to mpas_halo_exch_group_full_halo_exch in mpas_halo_testing. The merge of PR 1355 to develop, which introduced an extra optional argument (withGPUAwareMPI) to the signature of mpas_halo_exch_group_full_halo_exch, broke the build of the test core. This commit fixes the build of the test core. --- src/core_test/mpas_halo_testing.F | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core_test/mpas_halo_testing.F b/src/core_test/mpas_halo_testing.F index 8ad1551989..ef1843a773 100644 --- a/src/core_test/mpas_halo_testing.F +++ b/src/core_test/mpas_halo_testing.F @@ -168,7 +168,7 @@ subroutine mpas_halo_tests(domain, ierr) end do end do - call mpas_halo_exch_group_full_halo_exch(domain, 'persistent_group', ierr_local) + call mpas_halo_exch_group_full_halo_exch(domain, 'persistent_group', iErr=ierr_local) ierr = ior(ierr, ierr_local) diff = 0.0_RKIND @@ -228,7 +228,7 @@ subroutine mpas_halo_tests(domain, ierr) end do end do - call mpas_halo_exch_group_full_halo_exch(domain, 'scratch_group', ierr_local) + call mpas_halo_exch_group_full_halo_exch(domain, 'scratch_group', iErr=ierr_local) ierr = ior(ierr, ierr_local) diff = 0.0_RKIND