diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-12-16 21:42:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-16 21:42:29 (GMT) |
commit | 5ed89ee77881e45e81fdaa350b56ad22e1e4106c (patch) | |
tree | 927af4a4264cdc75f778b0f02f6cc1d6d868d6dd /test | |
parent | 065a466bc80b0b947eddd2f9c634e0f191c81025 (diff) | |
download | hdf5-5ed89ee77881e45e81fdaa350b56ad22e1e4106c.zip hdf5-5ed89ee77881e45e81fdaa350b56ad22e1e4106c.tar.gz hdf5-5ed89ee77881e45e81fdaa350b56ad22e1e4106c.tar.bz2 |
1.10: Brings the updated CI in from develop (#2312)
* 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 compatibility 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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mirror_vfd.c b/test/mirror_vfd.c index f1170f0..7d838c6 100644 --- a/test/mirror_vfd.c +++ b/test/mirror_vfd.c @@ -1594,8 +1594,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); |