summaryrefslogtreecommitdiffstats
path: root/fortran/test/fortranlib_test.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2023-05-01 22:21:47 (GMT)
committerGitHub <noreply@github.com>2023-05-01 22:21:47 (GMT)
commita0340338e53d4b34127a7e5356b28b1640f9414c (patch)
tree510fe676640fe3892feb681aca253984fd8df512 /fortran/test/fortranlib_test.F90
parent9ea976b9b617b0082f5e65f31942c8fbf1a120e1 (diff)
downloadhdf5-a0340338e53d4b34127a7e5356b28b1640f9414c.zip
hdf5-a0340338e53d4b34127a7e5356b28b1640f9414c.tar.gz
hdf5-a0340338e53d4b34127a7e5356b28b1640f9414c.tar.bz2
Add Fortran Selection IO APIs (#2864)
new selection IO fortran APIs with tests
Diffstat (limited to 'fortran/test/fortranlib_test.F90')
-rw-r--r--fortran/test/fortranlib_test.F906
1 files changed, 5 insertions, 1 deletions
diff --git a/fortran/test/fortranlib_test.F90 b/fortran/test/fortranlib_test.F90
index d7fca7d..ec0dcec 100644
--- a/fortran/test/fortranlib_test.F90
+++ b/fortran/test/fortranlib_test.F90
@@ -193,7 +193,7 @@ PROGRAM fortranlibtest
ret_total_error = 0
CALL external_test(cleanup, ret_total_error)
- CALL write_test_status(ret_total_error, ' External dataset test', total_error)
+ CALL write_test_status(ret_total_error, ' External dataset and Selection IO test', total_error)
ret_total_error = 0
CALL multi_file_test(cleanup, ret_total_error)
@@ -207,6 +207,10 @@ PROGRAM fortranlibtest
CALL test_misc_properties(cleanup, ret_total_error)
CALL write_test_status(ret_total_error, ' Miscellaneous properties', total_error)
+ ret_total_error = 0
+ CALL test_in_place_conversion(cleanup, ret_total_error)
+ CALL write_test_status(ret_total_error, ' Test in-place conversion', total_error)
+
!
! '========================================='
! 'Testing ATTRIBUTE interface '