summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2018-03-21 19:47:02 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2018-03-21 19:47:02 (GMT)
commite79f9a73feb1b18c52a1608336aff612d2732d5b (patch)
treef6fee0310821442714fddc9fd00af09579000267
parent519a8fb46132c20bb00bddba64fe29514bb2beb4 (diff)
parent67c8acdf17c74ae56d72e80c18c6491972909e30 (diff)
downloadhdf5-e79f9a73feb1b18c52a1608336aff612d2732d5b.zip
hdf5-e79f9a73feb1b18c52a1608336aff612d2732d5b.tar.gz
hdf5-e79f9a73feb1b18c52a1608336aff612d2732d5b.tar.bz2
Merge pull request #988 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit '67c8acdf17c74ae56d72e80c18c6491972909e30': Couple fixes to the test routine for HDFFV-10425.
-rw-r--r--hl/test/test_dset_opt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/test/test_dset_opt.c b/hl/test/test_dset_opt.c
index fe2b2f3..ef4cf13 100644
--- a/hl/test/test_dset_opt.c
+++ b/hl/test/test_dset_opt.c
@@ -2040,7 +2040,7 @@ test_single_chunk_latest(void)
goto error;
/* Create the dataset */
- if((did = H5Dcreate(fid, DATASET, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
+ if((did = H5Dcreate2(fid, DATASET, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
goto error;
/* Write the data directly to the dataset */
@@ -2064,7 +2064,7 @@ test_single_chunk_latest(void)
/* Open the file and dataset with default properties */
if((fid = H5Fopen(FILE, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0)
goto error;
- if((did = H5Dopen(fid, DATASET, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DATASET, H5P_DEFAULT)) < 0)
goto error;
/* Retrieve dataset creation property list */