diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-13 20:53:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-13 20:53:35 (GMT) |
commit | 6b45f5172ccb4311e0be9ae15da3758abb6b0e67 (patch) | |
tree | 5a7a112fe7a8a98c6fecb45b513789d15962eb3d /test/titerate.c | |
parent | 6562465a2c2a58cfbc2f47bf60bb538f7a783933 (diff) | |
download | hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.zip hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.gz hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.bz2 |
[svn-r11245] Purpose:
Code cleanup
Description:
Trim trailing whitespace, which is making 'diff'ing the two branches
difficult.
Solution:
Ran this script in each directory:
foreach f (*.[ch] *.cpp)
sed 's/[[:blank:]]*$//' $f > sed.out && mv sed.out $f
end
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'test/titerate.c')
-rw-r--r-- | test/titerate.c | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/test/titerate.c b/test/titerate.c index b883ba3..2a3a599 100644 --- a/test/titerate.c +++ b/test/titerate.c @@ -66,7 +66,7 @@ herr_t aiter_cb(hid_t loc_id, const char *name, void *op_data); /**************************************************************** ** ** iter_strcmp(): String comparison routine for qsort -** +** ****************************************************************/ int iter_strcmp(const void *s1, const void *s2) { @@ -76,7 +76,7 @@ int iter_strcmp(const void *s1, const void *s2) /**************************************************************** ** ** giter_cb(): Custom group iteration callback routine. -** +** ****************************************************************/ herr_t giter_cb(hid_t UNUSED group, const char *name, void *op_data) { @@ -105,7 +105,7 @@ herr_t giter_cb(hid_t UNUSED group, const char *name, void *op_data) /**************************************************************** ** ** test_iter_group(): Test group iteration functionality -** +** ****************************************************************/ static void test_iter_group(void) { @@ -155,22 +155,22 @@ static void test_iter_group(void) CHECK(ret, FAIL, "H5Dclose"); } - /* Create a group and named datatype under root group for testing + /* Create a group and named datatype under root group for testing * H5Gget_objtype_by_idx. */ grp = H5Gcreate(file, "grp", 0); CHECK(ret, FAIL, "H5Gcreate"); - ret = H5Tcommit(file, "dtype", datatype); + ret = H5Tcommit(file, "dtype", datatype); CHECK(ret, FAIL, "H5Tcommit"); - + /* Close everything up */ ret=H5Tclose(datatype); CHECK(ret, FAIL, "H5Tclose"); - + ret=H5Gclose(grp); CHECK(ret, FAIL, "H5Gclose"); - + ret=H5Sclose(filespace); CHECK(ret, FAIL, "H5Sclose"); @@ -195,20 +195,20 @@ static void test_iter_group(void) ret = H5Gget_num_objs(root_group, &num_membs); CHECK(ret, FAIL, "H5Gget_num_objs"); VERIFY(num_membs,NDATASETS+2,"H5Gget_num_objs"); - + for(i=0; i< (int)num_membs; i++) { H5G_obj_t obj_type; /* Type of object in file */ ret = (herr_t)H5Gget_objname_by_idx(root_group, (hsize_t)i, dataset_name, NAMELEN); CHECK(ret, FAIL, "H5Gget_objname_by_idx"); - + obj_type = H5Gget_objtype_by_idx(root_group, (hsize_t)i); CHECK(obj_type, H5G_UNKNOWN, "H5Gget_objtype_by_idx"); } - + H5E_BEGIN_TRY { ret = (herr_t)H5Gget_objname_by_idx(root_group, (hsize_t)(NDATASETS+3), dataset_name, NAMELEN); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Gget_objname_by_idx"); ret = H5Gclose(root_group); @@ -223,20 +223,20 @@ static void test_iter_group(void) ret = H5Gget_num_objs(file, &num_membs); CHECK(ret, FAIL, "H5Gget_num_objs"); VERIFY(num_membs,NDATASETS+2,"H5Gget_num_objs"); - + for(i=0; i< (int)num_membs; i++) { H5G_obj_t obj_type; /* Type of object in file */ ret = (herr_t)H5Gget_objname_by_idx(file, (hsize_t)i, dataset_name, NAMELEN); CHECK(ret, FAIL, "H5Gget_objname_by_idx"); - + obj_type = H5Gget_objtype_by_idx(file, (hsize_t)i); CHECK(obj_type, H5G_UNKNOWN, "H5Gget_objtype_by_idx"); } - + H5E_BEGIN_TRY { ret = (herr_t)H5Gget_objname_by_idx(file, (hsize_t)(NDATASETS+3), dataset_name, NAMELEN); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Gget_objname_by_idx"); } @@ -245,21 +245,21 @@ static void test_iter_group(void) idx=-1; H5E_BEGIN_TRY { ret=H5Giterate(file,"/",&idx,giter_cb,&info); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Giterate"); /* Test skipping exactly as many entries as in the group */ idx=NDATASETS+2; H5E_BEGIN_TRY { ret=H5Giterate(file,"/",&idx,giter_cb,&info); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Giterate"); /* Test skipping more entries than are in the group */ idx=NDATASETS+3; H5E_BEGIN_TRY { ret=H5Giterate(file,"/",&idx,giter_cb,&info); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Giterate"); /* Test all objects in group, when callback always returns 0 */ @@ -350,7 +350,7 @@ static void test_iter_group(void) /**************************************************************** ** ** aiter_cb(): Custom group iteration callback routine. -** +** ****************************************************************/ herr_t aiter_cb(hid_t UNUSED group, const char *name, void *op_data) { @@ -379,7 +379,7 @@ herr_t aiter_cb(hid_t UNUSED group, const char *name, void *op_data) /**************************************************************** ** ** test_iter_attr(): Test attribute iteration functionality -** +** ****************************************************************/ static void test_iter_attr(void) { @@ -410,7 +410,7 @@ static void test_iter_attr(void) dataset = H5Dcreate(file, "Dataset", datatype, filespace, H5P_DEFAULT); CHECK(dataset, FAIL, "H5Dcreate"); - + for(i=0; i< NATTR; i++) { sprintf(name,"Attribute %d",i); attribute = H5Acreate(dataset, name, datatype, filespace, H5P_DEFAULT); @@ -451,14 +451,14 @@ static void test_iter_attr(void) idx=NATTR; H5E_BEGIN_TRY { ret=H5Aiterate(dataset,&idx,aiter_cb,&info); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Aiterate"); /* Test skipping more attributes than there are */ idx=NATTR+1; H5E_BEGIN_TRY { ret=H5Aiterate(dataset,&idx,aiter_cb,&info); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Aiterate"); /* Test all attributes on dataset, when callback always returns 0 */ @@ -527,7 +527,7 @@ static void test_iter_attr(void) /**************************************************************** ** ** iter_strcmp2(): String comparison routine for qsort -** +** ****************************************************************/ int iter_strcmp2(const void *s1, const void *s2) { @@ -537,7 +537,7 @@ int iter_strcmp2(const void *s1, const void *s2) /**************************************************************** ** ** giter_cb2(): Custom group iteration callback routine. -** +** ****************************************************************/ herr_t giter_cb2(hid_t loc_id, const char *name, void *opdata) { @@ -568,7 +568,7 @@ herr_t giter_cb2(hid_t loc_id, const char *name, void *opdata) ** ** test_iter_group_large(): Test group iteration functionality ** for groups with large #'s of objects -** +** ****************************************************************/ static void test_iter_group_large(void) { @@ -606,7 +606,7 @@ static void test_iter_group_large(void) /* Create a bunch of groups */ for (i=0; i<ITER_NGROUPS; i++) { - sprintf(gname, "Group_%d", i); + sprintf(gname, "Group_%d", i); /* Add the name to the list of objects in the root group */ strcpy(names[i].name,gname); @@ -681,9 +681,9 @@ static void test_iter_group_large(void) /**************************************************************** ** -** test_grp_memb_funcs(): Test group member information +** test_grp_memb_funcs(): Test group member information ** functionality -** +** ****************************************************************/ static void test_grp_memb_funcs(void) { @@ -727,28 +727,28 @@ static void test_grp_memb_funcs(void) CHECK(ret, FAIL, "H5Dclose"); } - /* Create a group and named datatype under root group for testing + /* Create a group and named datatype under root group for testing * H5Gget_objtype_by_idx. */ grp = H5Gcreate(file, "grp", 0); CHECK(ret, FAIL, "H5Gcreate"); - + dnames[NDATASETS]=HDstrdup("grp"); CHECK(dnames[NDATASETS], NULL, "strdup"); - - ret = H5Tcommit(file, "dtype", datatype); + + ret = H5Tcommit(file, "dtype", datatype); CHECK(ret, FAIL, "H5Tcommit"); - + dnames[NDATASETS+1]=HDstrdup("dtype"); - CHECK(dnames[NDATASETS], NULL, "strdup"); - + CHECK(dnames[NDATASETS], NULL, "strdup"); + /* Close everything up */ ret=H5Tclose(datatype); CHECK(ret, FAIL, "H5Tclose"); - + ret=H5Gclose(grp); CHECK(ret, FAIL, "H5Gclose"); - + ret=H5Sclose(filespace); CHECK(ret, FAIL, "H5Sclose"); @@ -771,24 +771,24 @@ static void test_grp_memb_funcs(void) ret = H5Gget_num_objs(root_group, &num_membs); CHECK(ret, FAIL, "H5Gget_num_objs"); VERIFY(num_membs,NDATASETS+2,"H5Gget_num_objs"); - + for(i=0; i< (int)num_membs; i++) { H5G_obj_t obj_type; /* Type of object in file */ /* Test with NULL for name, to query length */ name_len = H5Gget_objname_by_idx(root_group, (hsize_t)i, NULL, NAMELEN); CHECK(name_len, FAIL, "H5Gget_objname_by_idx"); - + ret = (herr_t)H5Gget_objname_by_idx(root_group, (hsize_t)i, dataset_name, (size_t)(name_len+1)); CHECK(ret, FAIL, "H5Gget_objname_by_idx"); /* Double-check that the length is the same */ VERIFY(ret, name_len, "H5Gget_objname_by_idx"); - + /* Keep a copy of the dataset names around for later */ obj_names[i]=HDstrdup(dataset_name); CHECK(obj_names[i], NULL, "strdup"); - + obj_type = H5Gget_objtype_by_idx(root_group, (hsize_t)i); CHECK(obj_type, H5G_UNKNOWN, "H5Gget_objtype_by_idx"); @@ -799,24 +799,24 @@ static void test_grp_memb_funcs(void) if(!HDstrncmp(dataset_name, "Dataset", 7)) VERIFY(obj_type, H5G_DATASET, "H5Gget_objname_by_idx"); } - + H5E_BEGIN_TRY { ret = (herr_t)H5Gget_objname_by_idx(root_group, (hsize_t)(NDATASETS+3), dataset_name, NAMELEN); - } H5E_END_TRY; + } H5E_END_TRY; VERIFY(ret, FAIL, "H5Gget_objname_by_idx"); /* Sort the dataset names */ qsort(obj_names,NDATASETS+2,sizeof(char *),iter_strcmp); - + /* Compare object names */ for(i=0; i< (int)num_membs; i++) { ret = HDstrcmp(dnames[i], obj_names[i]); VERIFY(ret, 0, "HDstrcmp"); } - + ret = H5Gclose(root_group); CHECK(ret, FAIL, "H5Gclose"); - + ret=H5Fclose(file); CHECK(ret, FAIL, "H5Fclose"); @@ -832,7 +832,7 @@ static void test_grp_memb_funcs(void) /**************************************************************** ** ** test_links(): Test soft and hard link iteration -** +** ****************************************************************/ static void test_links(void) { @@ -855,7 +855,7 @@ static void test_links(void) /* create groups */ gid = H5Gcreate (file, "/g1", 0); CHECK(gid, FAIL, "H5Gcreate"); - + gid1 = H5Gcreate (file, "/g1/g1.1", 0); CHECK(gid1, FAIL, "H5Gcreate"); @@ -875,7 +875,7 @@ static void test_links(void) /* Get object name */ name_len = H5Gget_objname_by_idx(gid, i, obj_name, NAMELEN); CHECK(name_len, FAIL, "H5Gget_objname_by_idx"); - + obj_type = H5Gget_objtype_by_idx(gid, i); CHECK(obj_type, H5G_UNKNOWN, "H5Gget_objtype_by_idx"); @@ -902,9 +902,9 @@ static void test_links(void) /**************************************************************** ** ** test_iterate(): Main iteration testing routine. -** +** ****************************************************************/ -void +void test_iterate(void) { /* Output message about test being performed */ |