diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-06 20:03:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-06 20:03:06 (GMT) |
commit | 7320ccac2d5b254cf77bf4a45c35804c9a4c9ec0 (patch) | |
tree | 35f836d65184a72e96c1f765853e0a2ae4cf59a7 /test/links.c | |
parent | affdaa04b57c6c598580fa615d64a7680fbda2e8 (diff) | |
download | hdf5-7320ccac2d5b254cf77bf4a45c35804c9a4c9ec0.zip hdf5-7320ccac2d5b254cf77bf4a45c35804c9a4c9ec0.tar.gz hdf5-7320ccac2d5b254cf77bf4a45c35804c9a4c9ec0.tar.bz2 |
[svn-r13248] Description:
More progress on creation order for attribbutes - they are now basically
working for "compact" attribute storage.
Tested on:
FreeBSD/32 6.2 (duty)
Mac OS X/32 10.4.8 (amazon)
Diffstat (limited to 'test/links.c')
-rw-r--r-- | test/links.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/links.c b/test/links.c index 1fd6e15..7d0ff68 100644 --- a/test/links.c +++ b/test/links.c @@ -5216,11 +5216,11 @@ corder_create_empty(hid_t fapl) if(H5Pget_link_creation_order(gcpl_id, &crt_order_flags) < 0) TEST_ERROR if(crt_order_flags != 0) TEST_ERROR - /* Creating a group with onder creation order indexing on should fail */ + /* Setting invalid combination of a group order creation order indexing on should fail */ H5E_BEGIN_TRY { ret = H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_INDEXED); } H5E_END_TRY; - if(group_id > 0) { + if(ret > 0) { H5_FAILED(); puts(" H5Pset_link_create_order() should have failed for a creation order index with no tracking."); TEST_ERROR |