diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-28 22:45:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-28 22:45:23 (GMT) |
commit | bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b (patch) | |
tree | e4086a55da2a8a48e36eee285d7504502b73d83d /test | |
parent | cae55b647da56ab390e048219efaef6a1afdccee (diff) | |
download | hdf5-bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b.zip hdf5-bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b.tar.gz hdf5-bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b.tar.bz2 |
[svn-r14123] Description:
Move H5Gmove2() to deprecated code section, replacing it with H5Lmove()
in the source code.
Tested on:
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Linux/64 2.6 (smirom)
Solaris/32 5.10 (linew)
Mac OS X/32 10.4.10 (amazon)
Diffstat (limited to 'test')
-rw-r--r-- | test/getname.c | 4 | ||||
-rw-r--r-- | test/links.c | 2 | ||||
-rw-r--r-- | test/unlink.c | 26 |
3 files changed, 16 insertions, 16 deletions
diff --git a/test/getname.c b/test/getname.c index 51934fe..2012d57 100644 --- a/test/getname.c +++ b/test/getname.c @@ -475,13 +475,13 @@ test_main(hid_t file_id, hid_t fapl) if(check_name(group3_id, "/g5/C/D", "/g5/C/D") < 0) TEST_ERROR /* Move group "/g5/C/D" back to "/g4/A/B" using relative name */ - if(H5Gmove2(group5_id, "D", group2_id, "B") < 0) FAIL_STACK_ERROR + if(H5Lmove(group5_id, "D", group2_id, "B", H5P_DEFAULT, H5P_DEFAULT) < 0) FAIL_STACK_ERROR /* Verify */ if(check_name(group3_id, "/g4/A/B", "/g4/A/B") < 0) TEST_ERROR /* Move group "/g4/A/B" to "/g4/F/B" using relative name */ - if(H5Gmove2(group_id, "A", group_id, "F") < 0) FAIL_STACK_ERROR + if(H5Lmove(group_id, "A", group_id, "F", H5P_DEFAULT, H5P_DEFAULT) < 0) FAIL_STACK_ERROR /* Verify */ if(check_name(group3_id, "/g4/F/B", "/g4/F/B") < 0) TEST_ERROR diff --git a/test/links.c b/test/links.c index 9427ac9..11a5e9e 100644 --- a/test/links.c +++ b/test/links.c @@ -3027,7 +3027,7 @@ external_link_move(hid_t fapl, hbool_t new_format) if((gid = H5Gcreate2(fid, "group2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR /* Move external link to different group */ - if(H5Gmove2(fid, "src2", gid, "src3") < 0) FAIL_STACK_ERROR + if(H5Lmove(fid, "src2", gid, "src3", H5P_DEFAULT, H5P_DEFAULT) < 0) FAIL_STACK_ERROR /* Close new group */ if(H5Gclose(gid) < 0) FAIL_STACK_ERROR diff --git a/test/unlink.c b/test/unlink.c index d87c39b..c4f1dab 100644 --- a/test/unlink.c +++ b/test/unlink.c @@ -340,7 +340,7 @@ error: /*------------------------------------------------------------------------- * Function: test_new_move * - * Purpose: Tests H5Gmove2() + * Purpose: Tests H5Lmove() with different locations * * Return: Success: 0 * @@ -364,9 +364,9 @@ test_new_move(hid_t fapl) /* Create a second file */ h5_fixname(FILENAME[1], fapl, filename, sizeof filename); - if((file_a = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) TEST_ERROR + if((file_a = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) FAIL_STACK_ERROR h5_fixname(FILENAME[2], fapl, filename, sizeof filename); - if((file_b = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) TEST_ERROR + if((file_b = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) FAIL_STACK_ERROR /* Create groups in first file */ if((grp_1 = H5Gcreate2(file_a, "group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR @@ -380,26 +380,26 @@ test_new_move(hid_t fapl) /* Move a group within the file. Both of source and destination use * H5G_SAME_LOC. Should fail. */ H5E_BEGIN_TRY { - if(H5Gmove2(H5G_SAME_LOC, "group_move", H5G_SAME_LOC, "group_new_name") !=FAIL) TEST_ERROR + if(H5Lmove(H5G_SAME_LOC, "group_move", H5G_SAME_LOC, "group_new_name", H5P_DEFAULT, H5P_DEFAULT) != FAIL) TEST_ERROR } H5E_END_TRY; /* Move a group across files. Should fail. */ H5E_BEGIN_TRY { - if(H5Gmove2(grp_1, "group_move", file_b, "group_new_name")!=FAIL) TEST_ERROR + if(H5Lmove(grp_1, "group_move", file_b, "group_new_name", H5P_DEFAULT, H5P_DEFAULT) != FAIL) TEST_ERROR } H5E_END_TRY; /* Move a group across groups in the same file. */ - if(H5Gmove2(grp_1, "group_move", grp_2, "group_new_name") < 0) TEST_ERROR + if(H5Lmove(grp_1, "group_move", grp_2, "group_new_name", H5P_DEFAULT, H5P_DEFAULT) < 0) FAIL_STACK_ERROR /* Open the group just moved to the new location. */ if((moved_grp = H5Gopen2(grp_2, "group_new_name", H5P_DEFAULT)) < 0) FAIL_STACK_ERROR - if(H5Gclose(grp_1) < 0) TEST_ERROR - if(H5Gclose(grp_2) < 0) TEST_ERROR - if(H5Gclose(grp_move) < 0) TEST_ERROR - if(H5Gclose(moved_grp) < 0) TEST_ERROR - if(H5Fclose(file_a) < 0) TEST_ERROR - if(H5Fclose(file_b) < 0) TEST_ERROR + if(H5Gclose(grp_1) < 0) FAIL_STACK_ERROR + if(H5Gclose(grp_2) < 0) FAIL_STACK_ERROR + if(H5Gclose(grp_move) < 0) FAIL_STACK_ERROR + if(H5Gclose(moved_grp) < 0) FAIL_STACK_ERROR + if(H5Fclose(file_a) < 0) FAIL_STACK_ERROR + if(H5Fclose(file_b) < 0) FAIL_STACK_ERROR PASSED(); return 0; @@ -420,7 +420,7 @@ test_new_move(hid_t fapl) /*------------------------------------------------------------------------- * Function: check_new_move * - * Purpose: Checks result of H5Gmove2() + * Purpose: Checks result of H5Lmove() with different locations * * Return: Success: 0 * |