diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-08-22 15:21:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 15:21:27 (GMT) |
commit | ec3737ab696e76574edee53cd137bf73de69aa2c (patch) | |
tree | e378bab3c039c47a41c5333d61ffe6fb30592509 /test | |
parent | f24dff5157641669c309e92dc8961e0ffd2d0057 (diff) | |
download | hdf5-ec3737ab696e76574edee53cd137bf73de69aa2c.zip hdf5-ec3737ab696e76574edee53cd137bf73de69aa2c.tar.gz hdf5-ec3737ab696e76574edee53cd137bf73de69aa2c.tar.bz2 |
GitHub workflow cleanup (#2047)
* Cleans up main GitHub workflow(s)
* Combines main.yml and pr-check.yml, which differed trivially
* Reduces config redundancy via proper use of the matrix scheme
* Adds build-only configs for:
- Version 1.6 default API
- No deprecated symbols
- Parallel HDF5
* The -Werror config was converted to build-only
* Makes the naming scheme more uniform
* Spaces out the code and adds comments
* Typo fix
* Fix mirror VFD CMake configure typo
* Debugging hack
* Undo debug hack and fix CMake build mode
* Set CC=mpicc for parallel builds
* Another attempt to fix parallel builds
* Updates comments in main.yml
* Fixes a v16 API bug in the mirror VFD test code
* Committing clang-format changes
* Added checks for v1.8 - 1.12 APIs
* Manually specify Windows configs
Java debug builds time out when running tests on Windows. We'll disable
them in debub mode while we investigate.
* Revert "Manually specify Windows configs"
This reverts commit d710d8d21990a57084841e82bd9f7e7d9f53a244.
* Skip Debug Windows configs while we investigate Java H5L timeouts
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 9a26c42..b4f4c2c 100644 --- a/test/mirror_vfd.c +++ b/test/mirror_vfd.c @@ -1464,8 +1464,8 @@ _create_chunking_ids(hid_t file_id, unsigned min_dset, unsigned max_dset, hsize_ FAIL_PUTS_ERROR(mesg); } - if ((dataset_ids[m] = H5Dcreate(file_id, dset_name, H5T_STD_I32BE, dataspace_ids[m], H5P_DEFAULT, - dcpl_id, H5P_DEFAULT)) < 0) { + if ((dataset_ids[m] = H5Dcreate2(file_id, dset_name, H5T_STD_I32BE, dataspace_ids[m], H5P_DEFAULT, + dcpl_id, H5P_DEFAULT)) < 0) { HDsnprintf(mesg, MIRR_MESG_SIZE, "unable to create dset ID %d\n", m); FAIL_PUTS_ERROR(mesg); } |