summaryrefslogtreecommitdiffstats
path: root/fortran/test/fortranlib_test.f90
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2003-04-02 21:43:05 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2003-04-02 21:43:05 (GMT)
commit4ce28b6b738541f86e5b663ed0a8dce5bfc10254 (patch)
tree6f283ef24d65cfe0c028201a6e872d71478a2a2f /fortran/test/fortranlib_test.f90
parentcd1b5623f0b092960542d38751b6f3453d18e7e7 (diff)
downloadhdf5-4ce28b6b738541f86e5b663ed0a8dce5bfc10254.zip
hdf5-4ce28b6b738541f86e5b663ed0a8dce5bfc10254.tar.gz
hdf5-4ce28b6b738541f86e5b663ed0a8dce5bfc10254.tar.bz2
[svn-r6574]
Purpose: Maintenance Description: New fortran APIs h5pset_fapl_multi and h5pget_fapl_multi have been added along with the new tests. Solution: Platforms tested: burrwhite with PGI compilers, arabica and modi4 with --enable-parallel Misc. update:
Diffstat (limited to 'fortran/test/fortranlib_test.f90')
-rw-r--r--fortran/test/fortranlib_test.f9010
1 files changed, 10 insertions, 0 deletions
diff --git a/fortran/test/fortranlib_test.f90 b/fortran/test/fortranlib_test.f90
index b41de81..1db0f82 100644
--- a/fortran/test/fortranlib_test.f90
+++ b/fortran/test/fortranlib_test.f90
@@ -39,6 +39,7 @@
INTEGER :: basic_datatype_total_error = 0
INTEGER :: enum_total_error = 0
INTEGER :: external_total_error = 0
+ INTEGER :: multi_file_total_error = 0
INTEGER :: attribute_total_error = 0
INTEGER :: identifier_total_error = 0
INTEGER :: group_total_error = 0
@@ -231,6 +232,15 @@
write(*, fmt = e_format) error_string
total_error = total_error + external_total_error
+ error_string = failure
+ cleanup = .FALSE.
+ CALL multi_file_test(cleanup, multi_file_total_error)
+ IF (multi_file_total_error == 0) error_string = success
+ write(*, fmt = '(23a)', advance = 'no') ' Multi file driver test'
+ write(*, fmt = '(47x,a)', advance = 'no') ' '
+ write(*, fmt = e_format) error_string
+ total_error = total_error + multi_file_total_error
+
! write(*,*)
! write(*,*) '========================================='
! write(*,*) 'Testing ATTRIBUTE interface '