2011-08-18 22:32:47 +08:00
|
|
|
!****h* root/fortran/test/fortranlib_test_1_8.f90
|
|
|
|
!
|
|
|
|
! NAME
|
|
|
|
! fortranlib_test_1_8.f90
|
|
|
|
!
|
|
|
|
! FUNCTION
|
|
|
|
! Basic testing of Fortran API's introduced in 1.8 release.
|
|
|
|
!
|
|
|
|
! COPYRIGHT
|
2010-01-30 12:29:13 +08:00
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2008-05-04 07:39:37 +08:00
|
|
|
! Copyright by The HDF Group. *
|
|
|
|
! Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
! All rights reserved. *
|
|
|
|
! *
|
|
|
|
! This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
! terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
! the COPYING file, which can be found at the root of the source code *
|
|
|
|
! distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
! If you do not have access to either file, you may request a copy from *
|
|
|
|
! help@hdfgroup.org. *
|
2010-01-30 12:29:13 +08:00
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
!
|
2011-08-18 22:32:47 +08:00
|
|
|
!*****
|
|
|
|
|
2008-05-04 07:39:37 +08:00
|
|
|
PROGRAM fortranlibtest
|
|
|
|
|
|
|
|
USE HDF5
|
2014-04-06 23:56:21 +08:00
|
|
|
USE THDF5_1_8
|
|
|
|
USE TH5_MISC
|
2008-05-04 07:39:37 +08:00
|
|
|
IMPLICIT NONE
|
|
|
|
INTEGER :: total_error = 0
|
2008-05-13 01:48:23 +08:00
|
|
|
INTEGER :: error
|
|
|
|
INTEGER :: ret_total_error
|
2008-05-04 07:39:37 +08:00
|
|
|
INTEGER :: majnum, minnum, relnum
|
2008-10-01 05:05:39 +08:00
|
|
|
LOGICAL :: cleanup, status
|
2008-05-04 07:39:37 +08:00
|
|
|
|
2010-01-30 12:29:13 +08:00
|
|
|
CALL h5open_f(error)
|
2008-10-01 05:05:39 +08:00
|
|
|
|
|
|
|
cleanup = .TRUE.
|
|
|
|
CALL h5_env_nocleanup_f(status)
|
|
|
|
IF(status) cleanup=.FALSE.
|
|
|
|
|
2008-05-04 07:39:37 +08:00
|
|
|
WRITE(*,*) ' ========================== '
|
|
|
|
WRITE(*,*) ' FORTRAN 1.8 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")
|
2017-05-19 05:32:26 +08:00
|
|
|
WRITE(*, '(I0)', advance="NO") majnum
|
2010-01-30 12:29:13 +08:00
|
|
|
WRITE(*, '(".")', advance="NO")
|
2017-05-19 05:32:26 +08:00
|
|
|
WRITE(*, '(I0)', advance="NO") minnum
|
2008-05-04 07:39:37 +08:00
|
|
|
WRITE(*, '(" release ")', advance="NO")
|
2017-05-19 05:32:26 +08:00
|
|
|
WRITE(*, '(I0)') relnum
|
2008-05-04 07:39:37 +08:00
|
|
|
ELSE
|
|
|
|
total_error = total_error + 1
|
|
|
|
ENDIF
|
|
|
|
WRITE(*,*)
|
|
|
|
|
2014-05-06 22:18:30 +08:00
|
|
|
CALL h5eset_auto_f(0, ret_total_error)
|
|
|
|
IF(ret_total_error.NE.0) &
|
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' h5eset_auto_f', &
|
2008-05-22 04:08:24 +08:00
|
|
|
total_error)
|
2008-05-04 07:39:37 +08:00
|
|
|
|
2008-05-13 01:48:23 +08:00
|
|
|
ret_total_error = 0
|
|
|
|
CALL attribute_test_1_8(cleanup, ret_total_error)
|
2008-05-22 04:08:24 +08:00
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' Testing attributes', &
|
|
|
|
total_error)
|
2008-05-04 12:28:05 +08:00
|
|
|
|
2008-05-13 01:48:23 +08:00
|
|
|
ret_total_error = 0
|
|
|
|
CALL group_test(cleanup, ret_total_error)
|
2008-05-22 04:08:24 +08:00
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' Testing groups', &
|
|
|
|
total_error)
|
2008-05-04 12:28:05 +08:00
|
|
|
|
2008-05-13 01:48:23 +08:00
|
|
|
ret_total_error = 0
|
|
|
|
CALL test_h5o(cleanup, ret_total_error)
|
2008-05-22 04:08:24 +08:00
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' Testing object interface', &
|
|
|
|
total_error)
|
2008-05-04 12:28:05 +08:00
|
|
|
|
2008-05-13 01:48:23 +08:00
|
|
|
ret_total_error = 0
|
|
|
|
CALL dtransform(cleanup, ret_total_error)
|
2008-05-22 04:08:24 +08:00
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' Testing data transform', &
|
|
|
|
total_error)
|
2008-05-04 12:28:05 +08:00
|
|
|
|
2008-05-13 01:48:23 +08:00
|
|
|
ret_total_error = 0
|
2015-03-20 03:14:19 +08:00
|
|
|
CALL test_h5s_encode(ret_total_error)
|
2008-05-22 04:08:24 +08:00
|
|
|
CALL write_test_status(ret_total_error, &
|
2011-08-18 22:32:47 +08:00
|
|
|
' Testing dataspace encoding and decoding', &
|
2008-05-22 04:08:24 +08:00
|
|
|
total_error)
|
2008-05-04 12:54:06 +08:00
|
|
|
|
2011-08-18 22:32:47 +08:00
|
|
|
ret_total_error = 0
|
|
|
|
CALL test_scaleoffset(cleanup, ret_total_error )
|
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' Testing scaleoffset filter', &
|
|
|
|
total_error)
|
2008-05-04 07:39:37 +08:00
|
|
|
|
2015-03-20 01:11:47 +08:00
|
|
|
ret_total_error = 0
|
2015-03-20 03:14:19 +08:00
|
|
|
CALL test_genprop_basic_class(ret_total_error )
|
2015-03-20 01:11:47 +08:00
|
|
|
CALL write_test_status(ret_total_error, &
|
|
|
|
' Testing basic generic property list class creation functionality', &
|
|
|
|
total_error)
|
|
|
|
|
2008-05-04 07:39:37 +08:00
|
|
|
WRITE(*,*)
|
|
|
|
|
|
|
|
WRITE(*,*) ' ============================================ '
|
|
|
|
WRITE(*, fmt = '(19x, 27a)', advance='NO') ' FORTRAN tests completed with '
|
|
|
|
WRITE(*, fmt = '(i4)', advance='NO') total_error
|
|
|
|
WRITE(*, fmt = '(12a)' ) ' error(s) ! '
|
|
|
|
WRITE(*,*) ' ============================================ '
|
|
|
|
|
|
|
|
CALL h5close_f(error)
|
|
|
|
|
|
|
|
! if errors detected, exit with non-zero code.
|
|
|
|
IF (total_error .NE. 0) CALL h5_exit_f (1)
|
|
|
|
|
|
|
|
END PROGRAM fortranlibtest
|