summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/25 hdf5/main.f90
blob: 45be146166d1632ed8f2639004ab46014b361c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use hdf5

implicit none

integer :: ier, major, minor, rel

call h5open_f(ier)
if (ier /= 0) error stop 'Unable to initialize HDF5'

call h5get_libversion_f(major, minor, rel, ier)
if (ier /= 0) error stop 'Unable to check HDF5 version'
print '(A,I1,A1,I0.2,A1,I1)','Fortran HDF5 version ',major,'.',minor,'.',rel

call h5close_f(ier)
if (ier /= 0) error stop 'Unable to close HDF5 library'

end program