diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-10-27 21:29:54 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-10-27 21:29:54 (GMT) |
commit | 3df83b192dbac78e5cb90a8933c24476cbc4b214 (patch) | |
tree | 4c760101eaead171d75a6f165530068bff2bad04 /test | |
parent | 34c8292e76d33024e11e74c864a410b321f5dd5a (diff) | |
download | hdf5-3df83b192dbac78e5cb90a8933c24476cbc4b214.zip hdf5-3df83b192dbac78e5cb90a8933c24476cbc4b214.tar.gz hdf5-3df83b192dbac78e5cb90a8933c24476cbc4b214.tar.bz2 |
[svn-r17755] Purpose: Fix assertion failure caused by H5Tcommit1/2
Description:
Calling H5Tcommit_anon on a file with read only access would cause an
assertion failure. Added a check to H5T_commit to return a failure in
this case. Removed redundant check in H5T_commit_named.
Tested: Fedora 11 (very minor change)
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 51f8f6d..2619f1b 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -3727,6 +3727,17 @@ test_named (hid_t fapl) goto error; } + /* Verify that H5Tcommit_anon returns an error */ + if((type = H5Tcopy(H5T_NATIVE_INT)) < 0) goto error; + H5E_BEGIN_TRY { + status = H5Tcommit_anon(file, type, H5P_DEFAULT, H5P_DEFAULT); + } H5E_END_TRY; + if(status >= 0) { + H5_FAILED(); + HDputs (" Types should not be committable to a read-only file!"); + goto error; + } + /* Close */ if(H5Tclose(type) < 0) goto error; if(H5Fclose(file) < 0) goto error; |