summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2016-07-06 23:08:42 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2016-07-06 23:08:42 (GMT)
commit88476380be230e68f84cd5ed117af098c4133dd0 (patch)
tree931b7b81456164d8fe3df6edaadfc083ad4ba9d3 /test
parent130f8135ca40858c4bda81dcd183b0dff4fe63e6 (diff)
downloadhdf5-88476380be230e68f84cd5ed117af098c4133dd0.zip
hdf5-88476380be230e68f84cd5ed117af098c4133dd0.tar.gz
hdf5-88476380be230e68f84cd5ed117af098c4133dd0.tar.bz2
[svn-r30151] Fix daily test failures for checkin #30143 for HDFFV-9940.
Tested on osx1010test, moohan, emu, kituo.
Diffstat (limited to 'test')
-rw-r--r--test/links.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/links.c b/test/links.c
index 10bec40..dcea7ce 100644
--- a/test/links.c
+++ b/test/links.c
@@ -7378,7 +7378,7 @@ external_link_with_committed_datatype(hid_t fapl, hbool_t new_format)
FAIL_STACK_ERROR
/* Open the group which is externally linked to target file */
- if((gid1 = H5Gopen(fid1, "link_to_2", H5P_DEFAULT)) < 0)
+ if((gid1 = H5Gopen2(fid1, "link_to_2", H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR
/* Create a copy of integer datatype */
@@ -7480,7 +7480,7 @@ external_link_with_committed_datatype(hid_t fapl, hbool_t new_format)
FAIL_STACK_ERROR
/* Open the committed datatype in the mainfile */
- if((tid = H5Topen(fid1, "myDatatype", H5P_DEFAULT)) < 0)
+ if((tid = H5Topen2(fid1, "myDatatype", H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR
/* Verify the datatype is committed */
@@ -7488,7 +7488,7 @@ external_link_with_committed_datatype(hid_t fapl, hbool_t new_format)
FAIL_STACK_ERROR
/* Open the group which is externally linked to target file */
- if((gid1 = H5Gopen(fid1, "link_to_2", H5P_DEFAULT)) < 0)
+ if((gid1 = H5Gopen2(fid1, "link_to_2", H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR
/* Open the attribute attached to the group */