summaryrefslogtreecommitdiffstats
path: root/fortran/test/fortranlib_test.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2022-10-11 12:25:05 (GMT)
committerGitHub <noreply@github.com>2022-10-11 12:25:05 (GMT)
commit64e69d9291e58f56152f91e58b847deb2c172e26 (patch)
tree7daebcbec09e89f282ff9896c9877b41608f02bc /fortran/test/fortranlib_test.F90
parent306db409d44cccbeaff1cd5acb1a99173ac8b185 (diff)
downloadhdf5-64e69d9291e58f56152f91e58b847deb2c172e26.zip
hdf5-64e69d9291e58f56152f91e58b847deb2c172e26.tar.gz
hdf5-64e69d9291e58f56152f91e58b847deb2c172e26.tar.bz2
Implemented C matching (and general) H5Dfill Fortran wrappers (#2152)
Diffstat (limited to 'fortran/test/fortranlib_test.F90')
-rw-r--r--fortran/test/fortranlib_test.F906
1 files changed, 6 insertions, 0 deletions
diff --git a/fortran/test/fortranlib_test.F90 b/fortran/test/fortranlib_test.F90
index 998b481..049d381 100644
--- a/fortran/test/fortranlib_test.F90
+++ b/fortran/test/fortranlib_test.F90
@@ -106,9 +106,15 @@ PROGRAM fortranlibtest
CALL extenddsettest(cleanup, ret_total_error)
CALL write_test_status(ret_total_error, ' Extendible dataset test', total_error)
+ ret_total_error = 0
CALL test_userblock_offset(cleanup, ret_total_error)
CALL write_test_status(ret_total_error, ' Dataset offset with user block', total_error)
+ ! Test filling dataspace elements
+ ret_total_error = 0
+ CALL test_dset_fill(cleanup, ret_total_error)
+ CALL write_test_status(ret_total_error, ' Filling dataspace elements', total_error)
+
!
! '========================================='
! 'Testing DATASPACE Interface '