diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-12 14:29:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-12 14:29:54 (GMT) |
commit | 5ad2673fdec68bfe0ba90bce77fc5ec6017693b9 (patch) | |
tree | be68910b0a6a8cd2e2ae5a28bf8fdfa00bb872e4 /test | |
parent | 5ffde305cdf2c167234f1ffb38adf557380f2234 (diff) | |
download | hdf5-5ad2673fdec68bfe0ba90bce77fc5ec6017693b9.zip hdf5-5ad2673fdec68bfe0ba90bce77fc5ec6017693b9.tar.gz hdf5-5ad2673fdec68bfe0ba90bce77fc5ec6017693b9.tar.bz2 |
[svn-r11386] Purpose:
Code cleanup/reorganization
Description:
Merge back some more changes extracted from the "compact group" set.
This bunch cleans up and prepares the H5G_* routines for eventual import of
new features.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4
Mac OS X.4
Diffstat (limited to 'test')
-rw-r--r-- | test/tmisc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/tmisc.c b/test/tmisc.c index e11bec2..c24195e 100644 --- a/test/tmisc.c +++ b/test/tmisc.c @@ -3783,7 +3783,7 @@ test_misc23(void) CHECK(status, FAIL, "H5Pset_create_intermediate_group"); - tmp_id = H5Gcreate_expand(file_id, "/A/B01/grp", 0, create_id, access_id); + tmp_id = H5Gcreate_expand(file_id, "/A/B01/grp", create_id, access_id); CHECK(tmp_id, FAIL, "H5Gcreate_expand"); /* Query that the name of the new group is correct */ @@ -3806,28 +3806,28 @@ test_misc23(void) CHECK(status, FAIL, "H5Gclose"); - tmp_id = H5Gcreate_expand(file_id, "/A/B02/C02/grp", 0, create_id, access_id); + tmp_id = H5Gcreate_expand(file_id, "/A/B02/C02/grp", create_id, access_id); CHECK(tmp_id, FAIL, "H5Gcreate_expand"); status = H5Gclose(tmp_id); CHECK(status, FAIL, "H5Gclose"); - tmp_id = H5Gcreate_expand(group_id, "B03/grp/", 0, create_id, access_id); + tmp_id = H5Gcreate_expand(group_id, "B03/grp/", create_id, access_id); CHECK(tmp_id, FAIL, "H5Gcreate_expand"); status = H5Gclose(tmp_id); CHECK(status, FAIL, "H5Gclose"); - if ( (tmp_id = H5Gcreate_expand(group_id, "/A/B04/grp/", 0, create_id, access_id)) < 0) + if ( (tmp_id = H5Gcreate_expand(group_id, "/A/B04/grp/", create_id, access_id)) < 0) CHECK(tmp_id, FAIL, "H5Gcreate_expand"); status = H5Gclose(tmp_id); CHECK(status, FAIL, "H5Gclose"); - if ( (tmp_id = H5Gcreate_expand(file_id, "/A/B05/C05/A", 0, create_id, access_id)) < 0) + if ( (tmp_id = H5Gcreate_expand(file_id, "/A/B05/C05/A", create_id, access_id)) < 0) CHECK(tmp_id, FAIL, "H5Gcreate_expand"); status = H5Gclose(tmp_id); |