2011-08-18 22:32:47 +08:00
|
|
|
!****h* root/fortran/test/tH5E.f90
|
|
|
|
!
|
|
|
|
! NAME
|
|
|
|
! tH5E.f90
|
|
|
|
!
|
|
|
|
! FUNCTION
|
|
|
|
! Basic testing of Fortran H5E APIs.
|
|
|
|
!
|
|
|
|
! COPYRIGHT
|
2010-01-30 12:29:13 +08:00
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-08 01:55:01 +08:00
|
|
|
! Copyright by The HDF Group. *
|
2002-09-24 06:06:01 +08:00
|
|
|
! 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
|
|
|
!
|
|
|
|
! NOTES
|
|
|
|
! Tests the H5D APIs functionalities of:
|
|
|
|
! h5eprint_f
|
|
|
|
!
|
|
|
|
! CONTAINS SUBROUTINES
|
|
|
|
! error_report_test
|
|
|
|
!
|
|
|
|
!*****
|
2002-09-24 06:06:01 +08:00
|
|
|
!
|
2014-04-06 23:56:21 +08:00
|
|
|
MODULE TH5E
|
|
|
|
|
|
|
|
CONTAINS
|
|
|
|
|
2002-09-24 06:06:01 +08:00
|
|
|
SUBROUTINE error_report_test(cleanup, total_error)
|
|
|
|
|
|
|
|
! This subroutine tests following functionalities: h5eprint_f
|
2001-11-27 23:11:56 +08:00
|
|
|
|
2010-01-30 12:29:13 +08:00
|
|
|
USE HDF5 ! This module contains all necessary modules
|
2014-04-06 23:56:21 +08:00
|
|
|
USE TH5_MISC
|
2001-11-27 23:11:56 +08:00
|
|
|
|
|
|
|
IMPLICIT NONE
|
2002-09-24 06:06:01 +08:00
|
|
|
LOGICAL, INTENT(IN) :: cleanup
|
2014-04-08 01:05:22 +08:00
|
|
|
INTEGER, INTENT(INOUT) :: total_error
|
2001-11-27 23:11:56 +08:00
|
|
|
|
2002-09-24 06:06:01 +08:00
|
|
|
CHARACTER(LEN=6), PARAMETER :: filename = "etestf" ! File name
|
|
|
|
CHARACTER(LEN=80) :: fix_filename
|
|
|
|
CHARACTER(LEN=8), PARAMETER :: err_filename = "err_file"! Error output file
|
|
|
|
CHARACTER(LEN=80) :: fix_err_filename
|
2010-01-30 12:29:13 +08:00
|
|
|
|
|
|
|
|
2001-11-27 23:11:56 +08:00
|
|
|
|
|
|
|
INTEGER(HID_T) :: file_id ! File identifier
|
|
|
|
INTEGER(HID_T) :: grp_id ! Group identifier
|
|
|
|
INTEGER :: error, tmp_error, err_flag
|
2010-01-30 12:29:13 +08:00
|
|
|
|
|
|
|
err_flag = 0
|
2001-11-27 23:11:56 +08:00
|
|
|
CALL h5eset_auto_f(err_flag, error)
|
|
|
|
CALL check("h5eprint_f",error, total_error)
|
|
|
|
!
|
|
|
|
! Create a new file using default properties.
|
2010-01-30 12:29:13 +08:00
|
|
|
!
|
2002-09-24 06:06:01 +08:00
|
|
|
CALL h5_fixname_f(filename, fix_filename, H5P_DEFAULT_F, error)
|
|
|
|
if (error .ne. 0) then
|
|
|
|
write(*,*) "Cannot modify filename"
|
|
|
|
stop
|
|
|
|
endif
|
|
|
|
CALL h5fcreate_f(fix_filename, H5F_ACC_TRUNC_F, file_id, error)
|
2001-11-27 23:11:56 +08:00
|
|
|
CALL check("h5fcreate_f",error,total_error)
|
2010-01-30 12:29:13 +08:00
|
|
|
|
2001-11-27 23:11:56 +08:00
|
|
|
!
|
|
|
|
! Try to open non-existing group in the file.
|
|
|
|
! Error message should go to the err_file_name file.
|
|
|
|
!
|
|
|
|
CALL h5gopen_f(file_id, "Doesnotexist1", grp_id, tmp_error)
|
2002-09-24 06:06:01 +08:00
|
|
|
CALL h5_fixname_f(err_filename, fix_err_filename, H5P_DEFAULT_F, error)
|
|
|
|
if (error .ne. 0) then
|
|
|
|
write(*,*) "Cannot modify filename"
|
|
|
|
stop
|
|
|
|
endif
|
|
|
|
CALL h5eprint_f(error, fix_err_filename)
|
2001-11-27 23:11:56 +08:00
|
|
|
CALL h5gopen_f(file_id, "Doesnotexist2", grp_id, tmp_error)
|
2002-09-24 06:06:01 +08:00
|
|
|
CALL h5eprint_f(error, fix_err_filename)
|
2010-01-30 12:29:13 +08:00
|
|
|
|
|
|
|
!
|
2001-11-27 23:11:56 +08:00
|
|
|
! Close the file.
|
|
|
|
!
|
|
|
|
CALL h5fclose_f(file_id, error)
|
|
|
|
CALL check("h5fclose_f",error,total_error)
|
|
|
|
|
2002-09-24 06:06:01 +08:00
|
|
|
if(cleanup) CALL h5_cleanup_f(filename, H5P_DEFAULT_F, error)
|
|
|
|
CALL check("h5_cleanup_f", error, total_error)
|
|
|
|
if(cleanup) CALL h5_cleanup_f(err_filename, H5P_DEFAULT_F, error)
|
|
|
|
CALL check("h5_cleanup_f", error, total_error)
|
2001-11-27 23:11:56 +08:00
|
|
|
RETURN
|
|
|
|
END SUBROUTINE error_report_test
|
2014-04-06 23:56:21 +08:00
|
|
|
|
|
|
|
END MODULE TH5E
|
|
|
|
|