summaryrefslogtreecommitdiffstats
path: root/fortran/test/tH5E.f90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2015-08-31 18:49:17 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2015-08-31 18:49:17 (GMT)
commite6f9fc5f7f58e4c0a9a8541bc5674b440abd658c (patch)
treefb806c6eebcecca69438629f6f7a6e0c9096ac1f /fortran/test/tH5E.f90
parentde1bafd1d81f936c046317720d7a73bcdb41f5e6 (diff)
downloadhdf5-e6f9fc5f7f58e4c0a9a8541bc5674b440abd658c.zip
hdf5-e6f9fc5f7f58e4c0a9a8541bc5674b440abd658c.tar.gz
hdf5-e6f9fc5f7f58e4c0a9a8541bc5674b440abd658c.tar.bz2
[svn-r27625] Added preprocessor commands for PGI compiler.
tested: h5committest
Diffstat (limited to 'fortran/test/tH5E.f90')
-rw-r--r--fortran/test/tH5E.f90102
1 files changed, 0 insertions, 102 deletions
diff --git a/fortran/test/tH5E.f90 b/fortran/test/tH5E.f90
deleted file mode 100644
index 10ecaf6..0000000
--- a/fortran/test/tH5E.f90
+++ /dev/null
@@ -1,102 +0,0 @@
-!****h* root/fortran/test/tH5E.f90
-!
-! NAME
-! tH5E.f90
-!
-! FUNCTION
-! Basic testing of Fortran H5E APIs.
-!
-! COPYRIGHT
-! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
-! 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 *
-! the files COPYING and Copyright.html. COPYING can be found at the root *
-! of the source code distribution tree; Copyright.html can be found at the *
-! root level of an installed copy of the electronic HDF5 document set and *
-! is linked from the top-level documents page. It can also be found at *
-! http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
-! access to either file, you may request a copy from help@hdfgroup.org. *
-! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
-!
-! NOTES
-! Tests the H5D APIs functionalities of:
-! h5eprint_f
-!
-! CONTAINS SUBROUTINES
-! error_report_test
-!
-!*****
-!
-MODULE TH5E
-
-CONTAINS
-
- SUBROUTINE error_report_test(cleanup, total_error)
-
-! This subroutine tests following functionalities: h5eprint_f
-
- USE HDF5 ! This module contains all necessary modules
- USE TH5_MISC
-
- IMPLICIT NONE
- LOGICAL, INTENT(IN) :: cleanup
- INTEGER, INTENT(INOUT) :: total_error
-
- 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
-
-
-
- INTEGER(HID_T) :: file_id ! File identifier
- INTEGER(HID_T) :: grp_id ! Group identifier
- INTEGER :: error, tmp_error, err_flag
-
- err_flag = 0
- CALL h5eset_auto_f(err_flag, error)
- CALL check("h5eprint_f",error, total_error)
- !
- ! Create a new file using default properties.
- !
- 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)
- CALL check("h5fcreate_f",error,total_error)
-
- !
- ! 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)
- 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)
- CALL h5gopen_f(file_id, "Doesnotexist2", grp_id, tmp_error)
- CALL h5eprint_f(error, fix_err_filename)
-
- !
- ! Close the file.
- !
- CALL h5fclose_f(file_id, error)
- CALL check("h5fclose_f",error,total_error)
-
- 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)
- RETURN
- END SUBROUTINE error_report_test
-
-END MODULE TH5E
-