diff options
author | starfire <no_author@starfire> | 2006-07-10 15:47:58 (GMT) |
---|---|---|
committer | starfire <no_author@starfire> | 2006-07-10 15:47:58 (GMT) |
commit | 8db4fe6d16d3e51e3d6122db02aaf888b911ebe0 (patch) | |
tree | 870360048be564a1126a63dbfc0693385e6fc1be /test/stab.c | |
parent | 9161a29d8315c8c61f4e993bf272dddde0e1e6ec (diff) | |
download | hdf5-8db4fe6d16d3e51e3d6122db02aaf888b911ebe0.zip hdf5-8db4fe6d16d3e51e3d6122db02aaf888b911ebe0.tar.gz hdf5-8db4fe6d16d3e51e3d6122db02aaf888b911ebe0.tar.bz2 |
[svn-r12461] Cleaned up the names of some internal API functions, cleaned up comments,
fixed a few tests that used incorrect names for H5L APIs (formerly hidden behind
H5_GROUP_REVISION ifdefs
Mostly cosmetic changes, tested on mir.
Diffstat (limited to 'test/stab.c')
-rw-r--r-- | test/stab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/stab.c b/test/stab.c index ec6343d..7c2f719 100644 --- a/test/stab.c +++ b/test/stab.c @@ -330,7 +330,7 @@ lifecycle(hid_t fapl) /* Create group for testing lifecycle */ if((gid = H5Gcreate_expand(fid, gcpl, H5P_DEFAULT)) < 0) TEST_ERROR - if((H5Lcreate(fid, LIFECYCLE_TOP_GROUP, gid, H5P_DEFAULT)) < 0) TEST_ERROR + if((H5Llink(fid, LIFECYCLE_TOP_GROUP, gid, H5P_DEFAULT)) < 0) TEST_ERROR /* Query group creation property settings */ if(H5Pget_local_heap_size_hint(gcpl, &lheap_size_hint) < 0) TEST_ERROR; @@ -789,7 +789,7 @@ no_compact(hid_t fapl) /* Create group for testing lifecycle */ if((gid = H5Gcreate_expand(fid, gcpl, H5P_DEFAULT)) < 0) TEST_ERROR - if((H5Lcreate(fid, NO_COMPACT_TOP_GROUP, gid, H5P_DEFAULT)) < 0) TEST_ERROR + if((H5Llink(fid, NO_COMPACT_TOP_GROUP, gid, H5P_DEFAULT)) < 0) TEST_ERROR /* Close GCPL */ if(H5Pclose(gcpl) < 0) TEST_ERROR; @@ -920,7 +920,7 @@ gcpl_on_root(hid_t fapl) /* Create a group and intermediate groups, to check if root group settings are inherited */ if((gid2 = H5Gcreate_expand(gid, H5P_DEFAULT, H5P_DEFAULT)) < 0) TEST_ERROR - if((H5Lcreate(gid, GCPL_ON_ROOT_BOTTOM_GROUP, gid2, lcpl)) < 0) TEST_ERROR + if((H5Llink(gid, GCPL_ON_ROOT_BOTTOM_GROUP, gid2, lcpl)) < 0) TEST_ERROR /* Close LCPL */ if(H5Pclose(lcpl) < 0) TEST_ERROR; |