diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-07 18:18:41 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-07 18:18:41 (GMT) |
commit | 7b78adce8b1f9f76b22acb3add6ad35b79acadaf (patch) | |
tree | cd65c44a8c7265463cc0f3fe3215bdb6e3629cb5 /fortran/test/fortranlib_test.f90 | |
parent | 0cd13ba19df7b19146b598fc9a774791ab02e223 (diff) | |
download | hdf5-7b78adce8b1f9f76b22acb3add6ad35b79acadaf.zip hdf5-7b78adce8b1f9f76b22acb3add6ad35b79acadaf.tar.gz hdf5-7b78adce8b1f9f76b22acb3add6ad35b79acadaf.tar.bz2 |
[svn-r2809]
Purpose:
Added new test file tH5G.f90 to test group interface
Platforms tested:
Linux (eirene)
Diffstat (limited to 'fortran/test/fortranlib_test.f90')
-rw-r--r-- | fortran/test/fortranlib_test.f90 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fortran/test/fortranlib_test.f90 b/fortran/test/fortranlib_test.f90 index 39642dc..62eee5d 100644 --- a/fortran/test/fortranlib_test.f90 +++ b/fortran/test/fortranlib_test.f90 @@ -24,6 +24,7 @@ INTEGER :: external_total_error = 0 INTEGER :: attribute_total_error = 0 INTEGER :: identifier_total_error = 0 + INTEGER :: group_total_error = 0 CHARACTER*8 error_string CHARACTER*8 :: success = ' PASSED ' CHARACTER*8 :: failure = '*FAILED*' @@ -201,6 +202,19 @@ write(*, fmt = e_format) error_string total_error = total_error + identifier_total_error +! write(*,*) +! write(*,*) '=========================================' +! write(*,*) 'Testing GROUP interface ' +! write(*,*) '=========================================' + + error_string = failure + CALL group_test(group_total_error) + IF (group_total_error == 0) error_string = success + write(*, fmt = '(11a)', advance = 'no') ' Group test' + write(*, fmt = '(59x,a)', advance = 'no') ' ' + write(*, fmt = e_format) error_string + total_error = total_error + identifier_total_error + write(*,*) write(*,*) ' ============================================ ' |