summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-03-10 16:37:53 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-03-10 16:37:53 (GMT)
commita42a1b15ef2cfd47cc696acf0487c35e07ecdcd3 (patch)
treef279be37845df0f2e7319976128c81d8d75400dc /test
parent6cfd5c146267e771e46d37709c405c7732feeaf0 (diff)
downloadhdf5-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')
-rw-r--r--test/be_extlink1.h5bin936 -> 928 bytes
-rw-r--r--test/le_extlink1.h5bin936 -> 928 bytes
-rw-r--r--test/links.c15
-rw-r--r--test/stab.c8
4 files changed, 4 insertions, 19 deletions
diff --git a/test/be_extlink1.h5 b/test/be_extlink1.h5
index 551d6bd..d8838f9 100644
--- a/test/be_extlink1.h5
+++ b/test/be_extlink1.h5
Binary files differ
diff --git a/test/le_extlink1.h5 b/test/le_extlink1.h5
index fd45585..07298b0 100644
--- a/test/le_extlink1.h5
+++ b/test/le_extlink1.h5
Binary files differ
diff --git a/test/links.c b/test/links.c
index 813b232..eb7b596 100644
--- a/test/links.c
+++ b/test/links.c
@@ -9008,7 +9008,6 @@ group_info(hid_t fapl)
/* Check (new/empty) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_COMPACT) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != 0) TEST_ERROR
@@ -9029,7 +9028,6 @@ group_info(hid_t fapl)
/* Check (new) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_COMPACT) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
@@ -9044,7 +9042,6 @@ group_info(hid_t fapl)
/* Check (new) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_COMPACT) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
} /* end if */
@@ -9058,7 +9055,6 @@ group_info(hid_t fapl)
/* Check main group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_COMPACT) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
@@ -9072,7 +9068,6 @@ group_info(hid_t fapl)
/* Check soft link group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_COMPACT) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
} /* end for */
@@ -9103,7 +9098,6 @@ group_info(hid_t fapl)
/* Check (new/empty) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_COMPACT) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != 0) TEST_ERROR
@@ -9124,7 +9118,6 @@ group_info(hid_t fapl)
/* Check (new) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_DENSE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
@@ -9139,7 +9132,6 @@ group_info(hid_t fapl)
/* Check (new) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_DENSE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
} /* end if */
@@ -9153,7 +9145,6 @@ group_info(hid_t fapl)
/* Check main group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_DENSE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
@@ -9167,7 +9158,6 @@ group_info(hid_t fapl)
/* Check soft link group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_DENSE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != (int64_t)(u + 1)) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
} /* end for */
@@ -9288,7 +9278,6 @@ group_info_old(hid_t fapl)
/* Check (new/empty) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_SYMBOL_TABLE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != 0) TEST_ERROR
@@ -9309,7 +9298,6 @@ group_info_old(hid_t fapl)
/* Check (new) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_SYMBOL_TABLE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
@@ -9324,7 +9312,6 @@ group_info_old(hid_t fapl)
/* Check (new) group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_SYMBOL_TABLE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
} /* end if */
@@ -9338,7 +9325,6 @@ group_info_old(hid_t fapl)
/* Check main group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_SYMBOL_TABLE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
@@ -9352,7 +9338,6 @@ group_info_old(hid_t fapl)
/* Check soft link group's information */
if(grp_info.storage_type != H5G_STORAGE_TYPE_SYMBOL_TABLE) TEST_ERROR
- if(grp_info.min_corder != 0) TEST_ERROR
if(grp_info.max_corder != 0) TEST_ERROR
if(grp_info.nlinks != (hsize_t)(u + 1)) TEST_ERROR
} /* end for */
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