summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2011-11-08 04:13:06 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2011-11-08 04:13:06 (GMT)
commitc4a83163d36bd7968928457a30b58fe2394f7fdf (patch)
treee4614ea51c5cbdfc5a8bb8f4cec5147da7acac11 /fortran
parentf7797d437a25ad865e5329cbf57983b2e799d76c (diff)
downloadhdf5-c4a83163d36bd7968928457a30b58fe2394f7fdf.zip
hdf5-c4a83163d36bd7968928457a30b58fe2394f7fdf.tar.gz
hdf5-c4a83163d36bd7968928457a30b58fe2394f7fdf.tar.bz2
[svn-r21731] Brought revisions 21719 and 21720 from the trunk, fixes test failures on Mac
and race condition with make check -j#. Tested: jam (gnu)
Diffstat (limited to 'fortran')
-rw-r--r--fortran/test/tH5P_F03.f9074
-rw-r--r--fortran/test/tH5T_F03.f902
2 files changed, 38 insertions, 38 deletions
diff --git a/fortran/test/tH5P_F03.f90 b/fortran/test/tH5P_F03.f90
index c910869..aec8a26 100644
--- a/fortran/test/tH5P_F03.f90
+++ b/fortran/test/tH5P_F03.f90
@@ -286,27 +286,27 @@ SUBROUTINE test_genprop_class_callback(total_error)
f6 = C_LOC(cls_cb_struct)
!/* Create a new generic class, derived from the root of the class hierarchy */
- CALL H5Pcreate_class_f(H5P_ROOT_F,CLASS1_NAME, cid1, error, f1, f2, c_null_funptr, c_null_ptr, f5, f6)
- CALL check("H5Pcreate_class_f", error, total_error)
+ CALL h5pcreate_class_f(h5p_ROOT_F,CLASS1_NAME, cid1, error, f1, f2, c_null_funptr, c_null_ptr, f5, f6)
+ CALL check("h5pcreate_class_f", error, total_error)
!/* Insert first property into class (with no callbacks) */
- CALL H5Pregister_f(cid1, PROP1_NAME, PROP1_SIZE, PROP1_DEF_VALUE, error)
- CALL check("H5Pregister_f", error, total_error)
+ CALL h5pregister_f(cid1, PROP1_NAME, PROP1_SIZE, PROP1_DEF_VALUE, error)
+ CALL check("h5pregister_f", error, total_error)
!/* Insert second property into class (with no callbacks) */
- CALL H5Pregister_f(cid1, PROP2_NAME, PROP2_SIZE, PROP2_DEF_VALUE, error)
- CALL check("H5Pregister_f", error, total_error)
+ CALL h5pregister_f(cid1, PROP2_NAME, PROP2_SIZE, PROP2_DEF_VALUE, error)
+ CALL check("h5pregister_f", error, total_error)
!/* Insert third property into class (with no callbacks) */
- CALL H5Pregister_f(cid1, PROP3_NAME, PROP3_SIZE, PROP3_DEF_VALUE, error)
- CALL check("H5Pregister_f", error, total_error)
+ CALL h5pregister_f(cid1, PROP3_NAME, PROP3_SIZE, PROP3_DEF_VALUE, error)
+ CALL check("h5pregister_f", error, total_error)
!/* Insert fourth property into class (with no callbacks) */
- CALL H5Pregister_f(cid1, PROP4_NAME, PROP4_SIZE, PROP4_DEF_VALUE, error)
- CALL check("H5Pregister_f", error, total_error)
+ CALL h5pregister_f(cid1, PROP4_NAME, PROP4_SIZE, PROP4_DEF_VALUE, error)
+ CALL check("h5pregister_f", error, total_error)
! /* Check the number of properties in class */
- CALL H5Pget_nprops_f(cid1, nprops, error)
- CALL check("H5Pget_nprops_f", error, total_error)
- CALL VERIFY("H5Pget_nprops_f", INT(nprops), 4, total_error)
+ CALL h5pget_nprops_f(cid1, nprops, error)
+ CALL check("h5pget_nprops_f", error, total_error)
+ CALL VERIFY("h5pget_nprops_f", INT(nprops), 4, total_error)
! /* Initialize class callback structs */
@@ -316,49 +316,49 @@ SUBROUTINE test_genprop_class_callback(total_error)
cls_cb_struct%id = -1
!/* Create a property list from the class */
- CALL H5Pcreate_f(cid1, lid1, error)
- CALL check("H5Pcreate", error, total_error)
+ CALL h5pcreate_f(cid1, lid1, error)
+ CALL check("h5pcreate_f", error, total_error)
!/* Verify that the creation callback occurred */
- CALL VERIFY("H5Pcreate", INT(crt_cb_struct%count), 1, total_error)
- CALL VERIFY("H5Pcreate", INT(crt_cb_struct%id), INT(lid1), total_error)
+ CALL VERIFY("h5pcreate_f", crt_cb_struct%count, 1, total_error)
+ CALL VERIFY("h5pcreate_f", INT(crt_cb_struct%id), INT(lid1), total_error)
! /* Check the number of properties in list */
- CALL H5Pget_nprops_f(lid1,nprops, error)
- CALL check("H5Pget_nprops_f", error, total_error)
- CALL VERIFY("H5Pget_nprops_f", INT(nprops), 4, total_error)
+ CALL h5pget_nprops_f(lid1,nprops, error)
+ CALL check("h5pget_nprops_f", error, total_error)
+ CALL VERIFY("h5pget_nprops_f", INT(nprops), 4, total_error)
! /* Create another property list from the class */
- CALL H5Pcreate_f(cid1, lid2, error)
- CALL check("H5Pcreate", error, total_error)
+ CALL h5pcreate_f(cid1, lid2, error)
+ CALL check("h5pcreate_f", error, total_error)
! /* Verify that the creation callback occurred */
- CALL VERIFY("H5Pcreate", INT(crt_cb_struct%count), 2, total_error)
- CALL VERIFY("H5Pcreate", INT(crt_cb_struct%id), INT(lid2), total_error)
+ CALL VERIFY("h5pcreate_f", crt_cb_struct%count, 2, total_error)
+ CALL VERIFY("h5pcreate_f", INT(crt_cb_struct%id), INT(lid2), total_error)
! /* Check the number of properties in list */
- CALL H5Pget_nprops_f(lid2,nprops, error)
- CALL check("H5Pget_nprops_f", error, total_error)
- CALL VERIFY("H5Pget_nprops_f", INT(nprops), 4, total_error)
+ CALL h5pget_nprops_f(lid2,nprops, error)
+ CALL check("h5pget_nprops_f", error, total_error)
+ CALL VERIFY("h5pget_nprops_f", INT(nprops), 4, total_error)
! /* Close first list */
- CALL H5Pclose_f(lid1, error);
- CALL check("h5pclose", error, total_error)
+ CALL h5pclose_f(lid1, error);
+ CALL check("h5pclose_f", error, total_error)
!/* Verify that the close callback occurred */
- CALL VERIFY("H5Pcreate", INT(cls_cb_struct%count), 1, total_error)
- CALL VERIFY("H5Pcreate", INT(cls_cb_struct%id), INT(lid1), total_error)
+ CALL VERIFY("h5pcreate_f", cls_cb_struct%count, 1, total_error)
+ CALL VERIFY("h5pcreate_f", INT(cls_cb_struct%id), INT(lid1), total_error)
!/* Close second list */
- CALL H5Pclose_f(lid2, error);
- CALL check("h5pclose", error, total_error)
+ CALL h5pclose_f(lid2, error);
+ CALL check("h5pclose_f", error, total_error)
!/* Verify that the close callback occurred */
- CALL VERIFY("H5Pcreate", INT(cls_cb_struct%count), 2, total_error)
- CALL VERIFY("H5Pcreate", INT(cls_cb_struct%id), INT(lid2), total_error)
+ CALL VERIFY("h5pcreate_f", cls_cb_struct%count, 2, total_error)
+ CALL VERIFY("h5pcreate_f", INT(cls_cb_struct%id), INT(lid2), total_error)
!/* Close class */
- CALL H5Pclose_class_f(cid1, error)
- CALL check("H5Pclose_class_f", error, total_error)
+ CALL h5pclose_class_f(cid1, error)
+ CALL check("h5pclose_class_f", error, total_error)
END SUBROUTINE test_genprop_class_callback
diff --git a/fortran/test/tH5T_F03.f90 b/fortran/test/tH5T_F03.f90
index f7cbd15..215ac9e 100644
--- a/fortran/test/tH5T_F03.f90
+++ b/fortran/test/tH5T_F03.f90
@@ -1031,7 +1031,7 @@ END SUBROUTINE test_array_compound_atomic
INTEGER, PARAMETER :: real_kind_7 = SELECTED_REAL_KIND(Fortran_REAL_4) !should map to REAL*4 on most modern processors
INTEGER, PARAMETER :: real_kind_15 = SELECTED_REAL_KIND(Fortran_REAL_8) !should map to REAL*8 on most modern processors
- CHARACTER(LEN=8), PARAMETER :: filename = "dsetf.h5" ! File name
+ CHARACTER(LEN=12), PARAMETER :: filename = "dsetf_F03.h5" ! File name
CHARACTER(LEN=5), PARAMETER :: dsetname1 = "dset1" ! Dataset name
CHARACTER(LEN=5), PARAMETER :: dsetname2 = "dset2" ! Dataset name
CHARACTER(LEN=5), PARAMETER :: dsetname4 = "dset4" ! Dataset name