diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 01:09:00 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 01:09:00 (GMT) |
commit | 9129a8452a543482336a85f68ba788691fe50925 (patch) | |
tree | 53de6974aecbd5a0a2443d345e8490fa4db5777c /test | |
parent | 051ffe9d61c067549bc1dab94f9de7ea330e64db (diff) | |
download | hdf5-9129a8452a543482336a85f68ba788691fe50925.zip hdf5-9129a8452a543482336a85f68ba788691fe50925.tar.gz hdf5-9129a8452a543482336a85f68ba788691fe50925.tar.bz2 |
[svn-r13493] Description:
Eliminate storing default values for "group info" fields.
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 b8044ae..8ec79eb 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 != 187) TEST_ERROR + if(obj_stat.ohdr.size != 183) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 167) TEST_ERROR + if(obj_stat.ohdr.size != 163) 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 != 187) TEST_ERROR + if(obj_stat.ohdr.size != 183) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 167) TEST_ERROR + if(obj_stat.ohdr.size != 163) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 112) TEST_ERROR if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR |