diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-06 19:04:36 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-06 19:04:36 (GMT) |
commit | 5c4bffc0d1defb6ef33757a351f744e718c8488d (patch) | |
tree | b0654da283eac4d7bfdf6bef440ef590a385c4d8 /test | |
parent | 492df7a33ca592cfd24a4ec31cda12b887df3241 (diff) | |
download | hdf5-5c4bffc0d1defb6ef33757a351f744e718c8488d.zip hdf5-5c4bffc0d1defb6ef33757a351f744e718c8488d.tar.gz hdf5-5c4bffc0d1defb6ef33757a351f744e718c8488d.tar.bz2 |
[svn-r13471] Description:
Fix a couple of expected size values that were missed earlier.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
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 725b331..79871ee 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 != 258) TEST_ERROR + if(obj_stat.ohdr.size != 254) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 238) TEST_ERROR + if(obj_stat.ohdr.size != 234) 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 != 258) TEST_ERROR + if(obj_stat.ohdr.size != 254) TEST_ERROR #else /* H5_HAVE_LARGE_HSIZET */ - if(obj_stat.ohdr.size != 238) TEST_ERROR + if(obj_stat.ohdr.size != 234) TEST_ERROR #endif /* H5_HAVE_LARGE_HSIZET */ if(obj_stat.ohdr.free != 120) TEST_ERROR if(obj_stat.ohdr.nmesgs != 3) TEST_ERROR |