diff --git a/CHANGELOG.md b/CHANGELOG.md index 201e3d3c69eb..287b7f473ec9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Deprecated +## [2.41.2] - 2023-10-27 + +### Fixed + +- Fixed missing initialize of pFlogger in a pfio test. Not clear why this was not failing for other compilers - detected with ifort 2021.10.0. + ## [2.41.1] - 2023-10-04 ### Fixed diff --git a/CMakeLists.txt b/CMakeLists.txt index 6a1dcd1b216e..38dd609089a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ endif () project ( MAPL - VERSION 2.41.1 + VERSION 2.41.2 LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF # Set the possible values of build type for cmake-gui diff --git a/pfio/tests/pfio_ctest_io.F90 b/pfio/tests/pfio_ctest_io.F90 index 9e2713f499f1..ff00a0b4795c 100644 --- a/pfio/tests/pfio_ctest_io.F90 +++ b/pfio/tests/pfio_ctest_io.F90 @@ -451,6 +451,7 @@ program main use ctest_io_CLI use MAPL_ExceptionHandling use FakeHistData0Mod + use pFlogger, only: pflogger_init => initialize implicit none integer :: rank, npes, ierror, provided,required @@ -533,6 +534,7 @@ program main my_icomm = MPI_COMM_NULL my_appcomm = MPI_COMM_NULL + call pflogger_init() do i = 1, N_iclient_group low_rank = client_start + (i-1) * options%npes_iserver up_rank = client_start + i*options%npes_iserver diff --git a/pfio/tests/pfio_performance.F90 b/pfio/tests/pfio_performance.F90 index 57f6db49f850..b3fa4d515bc4 100644 --- a/pfio/tests/pfio_performance.F90 +++ b/pfio/tests/pfio_performance.F90 @@ -468,6 +468,7 @@ program main use performace_CLI use FakeHistDataMod use MAPL_ExceptionHandling + use pFlogger, only: pflogger_init => initialize implicit none integer :: rank, npes, ierror @@ -492,6 +493,7 @@ program main call process_command_line(options, rc=status) + call pflogger_init() directory_service = DirectoryService(MPI_COMM_WORLD) my_icomm = MPI_COMM_NULL