summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2015-07-02 20:17:29 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2015-07-02 20:17:29 (GMT)
commitb4bf98a126b7335146fea1c41ebb71ca10bb1914 (patch)
tree394dd0923a34c7eff75982ff918228370dd32a81 /hl
parent6257e2d29a3108c077acf0b543723a72bb7dd6a0 (diff)
downloadhdf5-b4bf98a126b7335146fea1c41ebb71ca10bb1914.zip
hdf5-b4bf98a126b7335146fea1c41ebb71ca10bb1914.tar.gz
hdf5-b4bf98a126b7335146fea1c41ebb71ca10bb1914.tar.bz2
[svn-r27329] Fixes for daily test failures for revise_chunks:
1) Clear status_flags for h5repack_szip.h5 2) Use H5Dopen2() in test/dsets.c, test/test_swmr.c, hl/test/test_dset_append.c Tested on jam, koala, platypus.
Diffstat (limited to 'hl')
-rw-r--r--hl/test/test_dset_append.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/hl/test/test_dset_append.c b/hl/test/test_dset_append.c
index bb646cb..ee923e2 100644
--- a/hl/test/test_dset_append.c
+++ b/hl/test/test_dset_append.c
@@ -166,7 +166,7 @@ test_dataset_append_lines_columns(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
- if((did = H5Dopen(fid, DNAME_UNLIM, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DNAME_UNLIM, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */
@@ -300,7 +300,7 @@ test_dataset_append_lines(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
- if((did = H5Dopen(fid, DNAME_LINE, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DNAME_LINE, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */
@@ -435,7 +435,7 @@ test_dataset_append_columns(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
- if((did = H5Dopen(fid, DNAME_COLUMN, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DNAME_COLUMN, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */
@@ -920,7 +920,7 @@ test_dataset_append_less(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
- if((did = H5Dopen(fid, DNAME_LESS, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DNAME_LESS, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */
@@ -1077,7 +1077,7 @@ test_dataset_append_vary(hid_t fid)
FAIL_STACK_ERROR;
/* Open the dataset again */
- if((did = H5Dopen(fid, DNAME_VARY, H5P_DEFAULT)) < 0)
+ if((did = H5Dopen2(fid, DNAME_VARY, H5P_DEFAULT)) < 0)
FAIL_STACK_ERROR;
/* Read the dataset */