summaryrefslogtreecommitdiffstats
path: root/test/stab.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-03-11 03:06:05 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-03-11 03:06:05 (GMT)
commit0b3cccd0cb2521ef77077d677581d2d3342cdc6f (patch)
tree9cfbea07131180b489808bb4e194353daa853565 /test/stab.c
parent48f022a701da0912a4776a3d9d24a102dd562b5f (diff)
downloadhdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.zip
hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.tar.gz
hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.tar.bz2
[svn-r13496] Description:
Reduce size of "default" link message storage. Tested on: FreeBSD/32 6.2 (duty)
Diffstat (limited to 'test/stab.c')
-rw-r--r--test/stab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/stab.c b/test/stab.c
index 8ec79eb..adf9803 100644
--- a/test/stab.c
+++ b/test/stab.c
@@ -427,9 +427,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 != 183) TEST_ERROR
-#else /* H5_HAVE_LARGE_HSIZET */
if(obj_stat.ohdr.size != 163) TEST_ERROR
+#else /* H5_HAVE_LARGE_HSIZET */
+ if(obj_stat.ohdr.size != 143) TEST_ERROR
#endif /* H5_HAVE_LARGE_HSIZET */
if(obj_stat.ohdr.free != 0) TEST_ERROR
if(obj_stat.ohdr.nmesgs != 6) TEST_ERROR
@@ -453,11 +453,11 @@ 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 != 183) TEST_ERROR
-#else /* H5_HAVE_LARGE_HSIZET */
if(obj_stat.ohdr.size != 163) TEST_ERROR
+#else /* H5_HAVE_LARGE_HSIZET */
+ if(obj_stat.ohdr.size != 143) TEST_ERROR
#endif /* H5_HAVE_LARGE_HSIZET */
- if(obj_stat.ohdr.free != 112) TEST_ERROR
+ if(obj_stat.ohdr.free != 92) TEST_ERROR
if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR
if(obj_stat.ohdr.nchunks != 1) TEST_ERROR