summaryrefslogtreecommitdiffstats
path: root/fortran/test/fortranlib_test_F03.F90
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2024-03-07 11:34:55 (GMT)
committerGitHub <noreply@github.com>2024-03-07 11:34:55 (GMT)
commit9d8e8824964af3137b9e4cd400b9b45304fd86ef (patch)
treedb1a7d4d52b5bbca7e368356a12c96e0ec454d5c /fortran/test/fortranlib_test_F03.F90
parentfe5d0d5c535b34b20171d0d7540b11e11412755c (diff)
downloadhdf5-9d8e8824964af3137b9e4cd400b9b45304fd86ef.zip
hdf5-9d8e8824964af3137b9e4cd400b9b45304fd86ef.tar.gz
hdf5-9d8e8824964af3137b9e4cd400b9b45304fd86ef.tar.bz2
Added new H5E with tests. (#4049)
Added Fortran H5E APIs: h5eregister_class_f, h5eunregister_class_f, h5ecreate_msg_f, h5eclose_msg_f h5eget_msg_f, h5epush_f, h5eget_num_f, h5ewalk_f, h5eget_class_name_f, h5eappend_stack_f, h5eget_current_stack_f, h5eset_current_stack_f, h5ecreate_stack_f, h5eclose_stack_f, h5epop_f, h5eprint_f (C h5eprint v2 signature) Addresses Issue #3987
Diffstat (limited to 'fortran/test/fortranlib_test_F03.F90')
-rw-r--r--fortran/test/fortranlib_test_F03.F9013
1 files changed, 8 insertions, 5 deletions
diff --git a/fortran/test/fortranlib_test_F03.F90 b/fortran/test/fortranlib_test_F03.F90
index 85ab744..1c38b36 100644
--- a/fortran/test/fortranlib_test_F03.F90
+++ b/fortran/test/fortranlib_test_F03.F90
@@ -55,14 +55,13 @@ PROGRAM fortranlibtest_F03
total_error = total_error + 1
ENDIF
- ret_total_error = 0
-! PROBLEMS with C
-! CALL test_error(ret_total_error)
-! CALL write_test_status(ret_total_error, ' Test error API based on data I/O', total_error)
-
WRITE(*,*)
ret_total_error = 0
+ CALL test_error(ret_total_error)
+ CALL write_test_status(ret_total_error, ' Test error API based on data I/O', total_error)
+
+ ret_total_error = 0
CALL test_array_compound_atomic(ret_total_error)
CALL write_test_status(ret_total_error, ' Testing 1-D Array of Compound Datatypes Functionality', total_error)
@@ -175,6 +174,10 @@ PROGRAM fortranlibtest_F03
CALL test_obj_info(ret_total_error)
CALL write_test_status(ret_total_error, ' Testing object info functions ', total_error)
+ ret_total_error = 0
+ CALL test_error_stack(ret_total_error)
+ CALL write_test_status(ret_total_error, ' Test error H5E API stack operations', total_error)
+
! write(*,*)
! write(*,*) '========================================='
! write(*,*) 'Testing VDS '