diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-08-05 03:59:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 03:59:52 (GMT) |
commit | fb38a8b9249b9b01d71e706cac9c044e6f25d681 (patch) | |
tree | 6464462a67ae96f945a65d75db9a22075723542c /testpar | |
parent | 37c60bcea8694ec5d1118feb5a9bc7145d29b045 (diff) | |
download | hdf5-fb38a8b9249b9b01d71e706cac9c044e6f25d681.zip hdf5-fb38a8b9249b9b01d71e706cac9c044e6f25d681.tar.gz hdf5-fb38a8b9249b9b01d71e706cac9c044e6f25d681.tar.bz2 |
test(parallel): verify FALSE case (#3356)
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_file.c | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c index b743936..3264ad5 100644 --- a/testpar/t_file.c +++ b/testpar/t_file.c @@ -950,13 +950,13 @@ test_file_properties(void) void test_delete(void) { - hid_t fid = H5I_INVALID_HID; /* HDF5 file ID */ - hid_t fapl_id = H5I_INVALID_HID; /* File access plist */ - const char *filename = NULL; - MPI_Comm comm = MPI_COMM_WORLD; - MPI_Info info = MPI_INFO_NULL; - htri_t is_hdf5 = FAIL; /* Whether a file is an HDF5 file */ - herr_t ret; /* Generic return value */ + hid_t fid = H5I_INVALID_HID; /* HDF5 file ID */ + hid_t fapl_id = H5I_INVALID_HID; /* File access plist */ + const char *filename = NULL; + MPI_Comm comm = MPI_COMM_WORLD; + MPI_Info info = MPI_INFO_NULL; + htri_t is_accessible = FAIL; /* Whether a file is accessible */ + herr_t ret; /* Generic return value */ filename = (const char *)GetTestParameters(); @@ -979,8 +979,8 @@ test_delete(void) VRFY((SUCCEED == ret), "H5Fclose"); /* Verify that the file is an HDF5 file */ - is_hdf5 = H5Fis_accessible(filename, fapl_id); - VRFY((TRUE == is_hdf5), "H5Fis_accessible"); + is_accessible = H5Fis_accessible(filename, fapl_id); + VRFY((TRUE == is_accessible), "H5Fis_accessible"); /* Delete the file */ ret = H5Fdelete(filename, fapl_id); @@ -990,10 +990,16 @@ test_delete(void) /* This should fail since there is no file */ H5E_BEGIN_TRY { - is_hdf5 = H5Fis_accessible(filename, fapl_id); + is_accessible = H5Fis_accessible(filename, fapl_id); } H5E_END_TRY - VRFY((is_hdf5 != SUCCEED), "H5Fis_accessible"); + + if (FALSE == is_accessible) { + VRFY((FALSE == is_accessible), "H5Fis_accessible returned FALSE"); + } + if (FAIL == is_accessible) { + VRFY((FAIL == is_accessible), "H5Fis_accessible failed"); + } /* Release file-access plist */ ret = H5Pclose(fapl_id); |