summaryrefslogtreecommitdiffstats
path: root/fortran/testpar/subfiling.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2023-04-21 16:07:48 (GMT)
committerGitHub <noreply@github.com>2023-04-21 16:07:48 (GMT)
commitdef21b1e33f2499ed4d51af0708d12242d63fa63 (patch)
tree50c816935eb0672962b68c8e702ad28d291637c5 /fortran/testpar/subfiling.F90
parent07c4360b4d4f8459571815d624522eb7e01b02f6 (diff)
downloadhdf5-def21b1e33f2499ed4d51af0708d12242d63fa63.zip
hdf5-def21b1e33f2499ed4d51af0708d12242d63fa63.tar.gz
hdf5-def21b1e33f2499ed4d51af0708d12242d63fa63.tar.bz2
Added Fortran Async APIs (#2715)
H5A, H5D, H5ES, H5G, H5F, H5L and H5O async APIs were added.
Diffstat (limited to 'fortran/testpar/subfiling.F90')
-rw-r--r--fortran/testpar/subfiling.F9014
1 files changed, 12 insertions, 2 deletions
diff --git a/fortran/testpar/subfiling.F90 b/fortran/testpar/subfiling.F90
index 18614b6..043ac6c 100644
--- a/fortran/testpar/subfiling.F90
+++ b/fortran/testpar/subfiling.F90
@@ -91,6 +91,8 @@ PROGRAM subfiling_test
!
CALL h5open_f(hdferror)
+ IF(mpi_rank==0) CALL write_test_header("SUBFILING FORTRAN TESTING")
+
! ***********************************
! Test H5Pset/get_mpi_params_f APIs
! ***********************************
@@ -384,6 +386,9 @@ PROGRAM subfiling_test
WRITE(*,*) "MPI_ABORT *FAILED* Process = ", mpi_rank
ENDIF
ENDIF
+
+ IF(mpi_rank==0) CALL write_test_footer()
+
!
! end main program
!
@@ -392,8 +397,13 @@ PROGRAM subfiling_test
CALL mpi_init(mpierror)
CALL mpi_comm_rank(MPI_COMM_WORLD, mpi_rank, mpierror)
- IF(mpi_rank==0) CALL write_test_status( -1, &
- 'Subfiling not enabled', total_error)
+
+ IF(mpi_rank==0) THEN
+ CALL write_test_header("SUBFILING FORTRAN TESTING")
+ CALL write_test_status( -1, 'Subfiling not enabled', total_error)
+ CALL write_test_footer()
+ ENDIF
+
CALL mpi_finalize(mpierror)
#endif