summaryrefslogtreecommitdiffstats
path: root/test/stab.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-10-02 21:46:39 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-10-02 21:46:39 (GMT)
commit84a4166e72abac9eb08a7daa3f67c90227641cda (patch)
treeef7159ea41f3f22ef049f0ddf240c561e09e26d0 /test/stab.c
parent79aecf895393d2871764a9405c9698fd73225925 (diff)
downloadhdf5-84a4166e72abac9eb08a7daa3f67c90227641cda.zip
hdf5-84a4166e72abac9eb08a7daa3f67c90227641cda.tar.gz
hdf5-84a4166e72abac9eb08a7daa3f67c90227641cda.tar.bz2
[svn-r12707] Description:
Further minor modifications to the file format for tracking links in groups. This is tentatively the "final" file format for groups. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'test/stab.c')
-rw-r--r--test/stab.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/stab.c b/test/stab.c
index 59e2436..f776b8c 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 != 240) TEST_ERROR
-#else /* H5_HAVE_LARGE_HSIZET */
if(obj_stat.ohdr.size != 232) TEST_ERROR
+#else /* H5_HAVE_LARGE_HSIZET */
+ if(obj_stat.ohdr.size != 224) 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 != 240) TEST_ERROR
-#else /* H5_HAVE_LARGE_HSIZET */
if(obj_stat.ohdr.size != 232) TEST_ERROR
+#else /* H5_HAVE_LARGE_HSIZET */
+ if(obj_stat.ohdr.size != 224) TEST_ERROR
#endif /* H5_HAVE_LARGE_HSIZET */
if(obj_stat.ohdr.free != 128) TEST_ERROR
if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR