diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-10 20:02:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-10 20:02:55 (GMT) |
commit | 1eb19fc8959e2f4580e7d48633f42a350ca229c3 (patch) | |
tree | 44813647b934cf0828a1bd743d4fc66f917e6566 /test | |
parent | 753a42edf644632e4a8049ec41fdb5c368b18a21 (diff) | |
download | hdf5-1eb19fc8959e2f4580e7d48633f42a350ca229c3.zip hdf5-1eb19fc8959e2f4580e7d48633f42a350ca229c3.tar.gz hdf5-1eb19fc8959e2f4580e7d48633f42a350ca229c3.tar.bz2 |
[svn-r13491] Description:
Reduce the size of the value used to store the # of bytes in the
"payload" for chunk 0 of an object header.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'test')
-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 5275454..b8044ae 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 != 190) TEST_ERROR + if(obj_stat.ohdr.size != 187) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 170) TEST_ERROR + if(obj_stat.ohdr.size != 167) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 0) TEST_ERROR if(obj_stat.ohdr.nmesgs != 6) TEST_ERROR @@ -453,9 +453,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 != 190) TEST_ERROR + if(obj_stat.ohdr.size != 187) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 170) TEST_ERROR + if(obj_stat.ohdr.size != 167) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 112) TEST_ERROR if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR |