summaryrefslogtreecommitdiffstats
path: root/test/objcopy.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2019-02-14 00:13:18 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2019-02-14 00:13:18 (GMT)
commit10cdff5ca45786832bf5e6c3e3408bc725464fd6 (patch)
treec94b2c6f2f6475a836a99e509833c7046b0df28c /test/objcopy.c
parent40589e28d8bd98a1af906e34c56b8b908a7eddab (diff)
parentfb5d1a37c11bca613175a48262a2147e99c9dede (diff)
downloadhdf5-10cdff5ca45786832bf5e6c3e3408bc725464fd6.zip
hdf5-10cdff5ca45786832bf5e6c3e3408bc725464fd6.tar.gz
hdf5-10cdff5ca45786832bf5e6c3e3408bc725464fd6.tar.bz2
Merge pull request #1540 in HDFFV/hdf5 from merge_hyperslab_changes_01 to develop
* commit 'fb5d1a37c11bca613175a48262a2147e99c9dede': Align develop with incoming hyperslab_updates branch changes.
Diffstat (limited to 'test/objcopy.c')
-rw-r--r--test/objcopy.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/objcopy.c b/test/objcopy.c
index eb4927f..4055781 100644
--- a/test/objcopy.c
+++ b/test/objcopy.c
@@ -1167,7 +1167,7 @@ compare_data(hid_t parent1, hid_t parent2, hid_t pid, hid_t tid, size_t nelmts,
if((obj2_sid = H5Rget_region(parent2, H5R_DATASET_REGION, ref_buf2)) < 0) TEST_ERROR
/* Check if dataspaces are the same shape */
- if(H5S_select_shape_same_test(obj1_sid, obj2_sid) < 0) TEST_ERROR
+ if(H5S__select_shape_same_test(obj1_sid, obj2_sid) < 0) TEST_ERROR
/* Close dataspaces */
if(H5Sclose(obj1_sid) < 0) TEST_ERROR
@@ -2136,9 +2136,7 @@ test_copy_dataset_versionbounds(hid_t fcpl_src, hid_t fapl_src)
char src_fname[NAME_BUF_SIZE]; /* Name of source file */
char dst_fname[NAME_BUF_SIZE]; /* Name of destination file */
H5F_libver_t low, high; /* File format bounds */
- H5F_libver_t low_src, high_src; /* Source file format bounds */
unsigned srcdset_fillversion; /* Fill version of source dataset */
- hbool_t valid_high = FALSE; /* TRUE if high bound is valid */
int i, j; /* Local index variables */
H5D_t *dsetp = NULL; /* Pointer to internal dset structure */
herr_t ret; /* Generic return value */