summaryrefslogtreecommitdiffstats
path: root/fortran/test/fortranlib_test.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2022-04-19 18:05:54 (GMT)
committerGitHub <noreply@github.com>2022-04-19 18:05:54 (GMT)
commit32ef796e470da3e4de364d8dc469b03f5f6fafdc (patch)
tree12c32550a87790eaa310d2c7525728ca354b910c /fortran/test/fortranlib_test.F90
parent14da68ebffbb5750a86a180863e7c18ae5c8d461 (diff)
downloadhdf5-32ef796e470da3e4de364d8dc469b03f5f6fafdc.zip
hdf5-32ef796e470da3e4de364d8dc469b03f5f6fafdc.tar.gz
hdf5-32ef796e470da3e4de364d8dc469b03f5f6fafdc.tar.bz2
HDFFV-11306 Fixed (#1657)
* HDFFV-11306, * Fixed it so both h5open_f and h5close_f can be called multiple times. * Fixed an issue with open objects remaining after h5close_f was called. * Added additional tests. * comments clean-up
Diffstat (limited to 'fortran/test/fortranlib_test.F90')
-rw-r--r--fortran/test/fortranlib_test.F9020
1 files changed, 14 insertions, 6 deletions
diff --git a/fortran/test/fortranlib_test.F90 b/fortran/test/fortranlib_test.F90
index 1640a8f..998b481 100644
--- a/fortran/test/fortranlib_test.F90
+++ b/fortran/test/fortranlib_test.F90
@@ -37,19 +37,27 @@ PROGRAM fortranlibtest
INTEGER :: ret_total_error
LOGICAL :: cleanup, status
+ WRITE(*,*) ' ========================== '
+ WRITE(*,*) ' FORTRAN tests '
+ WRITE(*,*) ' ========================== '
+
+ ret_total_error = 0
+ CALL h5openclose(ret_total_error)
+ CALL write_test_status(ret_total_error, ' h5open/h5close test', total_error)
+
CALL h5open_f(error)
+ CALL check("h5open_f",error,total_error)
cleanup = .TRUE.
CALL h5_env_nocleanup_f(status)
IF(status) cleanup=.FALSE.
- WRITE(*,*) ' ========================== '
- WRITE(*,*) ' FORTRAN tests '
- WRITE(*,*) ' ========================== '
- CALL h5get_libversion_f(majnum, minnum, relnum, total_error)
- IF(total_error .EQ. 0) THEN
- WRITE(*, '(" FORTRANLIB_TEST is linked with HDF5 Library version ")', advance="NO")
+ ret_total_error = 0
+ CALL h5get_libversion_f(majnum, minnum, relnum, ret_total_error)
+ IF(ret_total_error .EQ. 0) THEN
+
+ WRITE(*, '(/," FORTRANLIB_TEST is linked with HDF5 Library version ")', advance="NO")
WRITE(*, '(I0)', advance="NO") majnum
WRITE(*, '(".")', advance="NO")
WRITE(*, '(I0)', advance="NO") minnum