diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-07 02:18:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-07 02:18:17 (GMT) |
commit | d47a0604451a975d3389ff510b6cad6507ea7200 (patch) | |
tree | 31b5cdd1319799a8bd26c3c59545020356f88ce2 /test/stab.c | |
parent | 535d29a726e4faa7e58d4836e7099616105d6beb (diff) | |
download | hdf5-d47a0604451a975d3389ff510b6cad6507ea7200.zip hdf5-d47a0604451a975d3389ff510b6cad6507ea7200.tar.gz hdf5-d47a0604451a975d3389ff510b6cad6507ea7200.tar.bz2 |
[svn-r13250] Description:
Add support for inserting attributes into creation order index.
Also, update support for dense link & attribute storage in h5debug.
Tested on:
FreeBSD/32 6.2 (duty)
Mac OS X/32 10.4.8 (amazon)
Diffstat (limited to 'test/stab.c')
-rw-r--r-- | test/stab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/stab.c b/test/stab.c index 47dbbfe..48e2bb9 100644 --- a/test/stab.c +++ b/test/stab.c @@ -426,9 +426,9 @@ lifecycle(hid_t fapl) /* Check that the object header is only one chunk and the space has been allocated correctly */ if(H5Gget_objinfo(gid, ".", FALSE, &obj_stat) < 0) TEST_ERROR #ifdef H5_HAVE_LARGE_HSIZET - if(obj_stat.ohdr.size != 250) TEST_ERROR + if(obj_stat.ohdr.size != 258) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 230) TEST_ERROR + if(obj_stat.ohdr.size != 238) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 0) TEST_ERROR if(obj_stat.ohdr.nmesgs != 6) TEST_ERROR @@ -452,9 +452,9 @@ lifecycle(hid_t fapl) /* Check that the object header is still one chunk and the space has been allocated correctly */ if(H5Gget_objinfo(gid, ".", FALSE, &obj_stat) < 0) TEST_ERROR #ifdef H5_HAVE_LARGE_HSIZET - if(obj_stat.ohdr.size != 250) TEST_ERROR + if(obj_stat.ohdr.size != 258) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 230) TEST_ERROR + if(obj_stat.ohdr.size != 238) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 120) TEST_ERROR if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR |