summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-12-16 21:42:48 (GMT)
committerGitHub <noreply@github.com>2022-12-16 21:42:48 (GMT)
commit91aa02817a957831ddd363af7e4e9232b7202f25 (patch)
tree085596cca028c409be3a5636b09cb51467c617de /test
parent8ef713ae5dc454db66ea821635f6d6d6970858f0 (diff)
downloadhdf5-91aa02817a957831ddd363af7e4e9232b7202f25.zip
hdf5-91aa02817a957831ddd363af7e4e9232b7202f25.tar.gz
hdf5-91aa02817a957831ddd363af7e4e9232b7202f25.tar.bz2
1.12: Brings the updated CI in from develop (#2311)
* Brings the updated CI in from develop Does not include the -Werror checks, changes 1.14 API to 1.12 where needed. * Fixes an API compat issue in the mirror VFD test * Committing clang-format changes * Removed pr-check.yml Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'test')
-rw-r--r--test/mirror_vfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mirror_vfd.c b/test/mirror_vfd.c
index 1a224c4..f8caea8 100644
--- a/test/mirror_vfd.c
+++ b/test/mirror_vfd.c
@@ -1573,8 +1573,8 @@ _create_chunking_ids(hid_t file_id, unsigned min_dset, unsigned max_dset, hsize_
FAIL_PUTS_ERROR(mesg);
}
- dataset_ids[m] =
- H5Dcreate(file_id, dset_name, H5T_STD_I32BE, dataspace_ids[m], H5P_DEFAULT, dcpl_id, H5P_DEFAULT);
+ dataset_ids[m] = H5Dcreate2(file_id, dset_name, H5T_STD_I32BE, dataspace_ids[m], H5P_DEFAULT, dcpl_id,
+ H5P_DEFAULT);
if (dataset_ids[m] < 0) {
HDsnprintf(mesg, MIRR_MESG_SIZE, "unable to create dset ID %d\n", m);
FAIL_PUTS_ERROR(mesg);