diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-10 16:37:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-10 16:37:53 (GMT) |
commit | a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3 (patch) | |
tree | f279be37845df0f2e7319976128c81d8d75400dc /test/stab.c | |
parent | 6cfd5c146267e771e46d37709c405c7732feeaf0 (diff) | |
download | hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.zip hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.tar.gz hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.tar.bz2 |
[svn-r13488] Description:
Remove unused "min. creation order" field from link info object
header message.
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 aea93c6..d2fb493 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 != 206) TEST_ERROR + if(obj_stat.ohdr.size != 198) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 186) TEST_ERROR + if(obj_stat.ohdr.size != 178) 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 != 206) TEST_ERROR + if(obj_stat.ohdr.size != 198) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 186) TEST_ERROR + if(obj_stat.ohdr.size != 178) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 112) TEST_ERROR if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR |