diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-06-16 04:00:48 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-06-16 04:00:48 (GMT) |
commit | dbad1589008e2ef9e713c712ca5ffbf7c97159d0 (patch) | |
tree | 3b0b37c6ae87a1a9e1390d8ae3713651847f93eb | |
parent | 462b924eca41b01c312d9533869f6bcaf4cc2d55 (diff) | |
download | hdf5-dbad1589008e2ef9e713c712ca5ffbf7c97159d0.zip hdf5-dbad1589008e2ef9e713c712ca5ffbf7c97159d0.tar.gz hdf5-dbad1589008e2ef9e713c712ca5ffbf7c97159d0.tar.bz2 |
Fixed problem with H5Fdelete "test" and split VFD.
-rw-r--r-- | test/tfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tfile.c b/test/tfile.c index 6318787..e0c3f8d 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -1931,7 +1931,7 @@ test_file_delete(hid_t fapl_id) H5E_BEGIN_TRY { is_hdf5 = H5Fis_accessible(filename, fapl_id); } H5E_END_TRY; - VERIFY(is_hdf5, SUCCEED, "H5Fis_accessible"); + CHECK(is_hdf5, TRUE, "H5Fis_accessible"); /* Try to delete it (should fail) */ H5E_BEGIN_TRY { |