Skip to content

Commit

Permalink
added H5PAR success statement
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Dec 21, 2023
1 parent bb8aae3 commit 473994d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 0 additions & 2 deletions HDF5Examples/FORTRAN/H5G/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ endif ()
#endif ()

if (H5EX_BUILD_TESTING)
# if (HDF_ENABLE_F2003)
set (exfiles
h5ex_g_iterate
h5ex_g_traverse
Expand All @@ -186,7 +185,6 @@ if (H5EX_BUILD_TESTING)
ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/${example}.h5 ${PROJECT_BINARY_DIR}/${example}.h5
)
endforeach ()
# endif ()

macro (ADD_DUMP_TEST testname)
add_test (
Expand Down
1 change: 1 addition & 0 deletions HDF5Examples/FORTRAN/H5PAR/ph5_f90_dataset.F90
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ PROGRAM DATASET
! Close FORTRAN interface
!
CALL h5close_f(error)
IF(mpi_rank.EQ.0) WRITE(*,'(A)') "PHDF5 example finished with no errors"

CALL MPI_FINALIZE(mpierror)

Expand Down
2 changes: 1 addition & 1 deletion HDF5Examples/FORTRAN/H5PAR/ph5_f90_file_create.F90
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ PROGRAM FILE_CREATE
! Close FORTRAN interface
!
CALL h5close_f(error)

IF(mpi_rank.EQ.0) WRITE(*,'(A)') "PHDF5 example finished with no errors"
CALL MPI_FINALIZE(mpierror)

END PROGRAM FILE_CREATE
2 changes: 1 addition & 1 deletion HDF5Examples/FORTRAN/H5PAR/ph5_f90_hyperslab_by_chunk.F90
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ PROGRAM DATASET_BY_CHUNK
! Close FORTRAN interfaces and HDF5 library.
!
CALL h5close_f(error)

IF(mpi_rank.EQ.0) WRITE(*,'(A)') "PHDF5 example finished with no errors"
100 continue
CALL MPI_FINALIZE(mpierror)

Expand Down
2 changes: 1 addition & 1 deletion HDF5Examples/FORTRAN/H5PAR/ph5_f90_hyperslab_by_col.F90
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ PROGRAM DATASET_BY_COL
! Close FORTRAN predefined datatypes.
!
CALL h5close_f(error)

IF(mpi_rank.EQ.0) WRITE(*,'(A)') "PHDF5 example finished with no errors"
CALL MPI_FINALIZE(mpierror)

END PROGRAM DATASET_BY_COL
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ PROGRAM DATASET_BY_PATTERN
! Close FORTRAN interfaces and HDF5 library.
!
CALL h5close_f(error)

IF(mpi_rank.EQ.0) WRITE(*,'(A)') "PHDF5 example finished with no errors"
100 continue
CALL MPI_FINALIZE(mpierror)

Expand Down
3 changes: 2 additions & 1 deletion HDF5Examples/FORTRAN/H5PAR/ph5_f90_hyperslab_by_row.F90
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,9 @@ PROGRAM DATASET_BY_ROW
! Close FORTRAN interfaces and HDF5 library.
!
CALL h5close_f(error)

IF(mpi_rank.EQ.0) WRITE(*,'(A)') "PHDF5 example finished with no errors"
100 continue

CALL MPI_FINALIZE(mpierror)

END PROGRAM DATASET_BY_ROW

0 comments on commit 473994d

Please sign in to comment.