From 0ccd1f48dd50ce7e241ac2164dcb7064322aa946 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 20:20:22 +0000 Subject: [PATCH 1/4] Committing clang-format changes --- src/H5Ppublic.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index 4ffa16f692a..7cb2eaffe4b 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -423,12 +423,9 @@ typedef enum H5D_selection_io_mode_t { /** * Causes for H5Pget_actual_selection_io_mode() property */ -#define H5D_SCALAR_IO \ - (0x0001u) /**< Scalar (or legacy MPIO) I/O was performed */ -#define H5D_VECTOR_IO \ - (0x0002u) /**< Vector I/O was performed */ -#define H5D_SELECTION_IO \ - (0x0004u) /**< Selection I/O was performed */ +#define H5D_SCALAR_IO (0x0001u) /**< Scalar (or legacy MPIO) I/O was performed */ +#define H5D_VECTOR_IO (0x0002u) /**< Vector I/O was performed */ +#define H5D_SELECTION_IO (0x0004u) /**< Selection I/O was performed */ /********************/ /* Public Variables */ From af6245262a0184a625da6089f810b0a856f83df6 Mon Sep 17 00:00:00 2001 From: "vchoi-hdfgroup.org" Date: Thu, 21 Sep 2023 12:33:07 -0500 Subject: [PATCH 2/4] Add a line --- test/select_io_dset.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/select_io_dset.c b/test/select_io_dset.c index 23c3f5ff9ca..545638e7efc 100644 --- a/test/select_io_dset.c +++ b/test/select_io_dset.c @@ -3334,6 +3334,7 @@ main(void) printf("All selection I/O dataset tests passed.\n"); printf("===================================\n"); +printf("Adding one line\n"); h5_cleanup(FILENAME, fapl); exit(EXIT_SUCCESS); From cf0d2aec14aa2d4d21663a6d9512aaac3c7b2960 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 17:35:47 +0000 Subject: [PATCH 3/4] Committing clang-format changes --- test/select_io_dset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/select_io_dset.c b/test/select_io_dset.c index 545638e7efc..dadff4e3f98 100644 --- a/test/select_io_dset.c +++ b/test/select_io_dset.c @@ -3334,7 +3334,7 @@ main(void) printf("All selection I/O dataset tests passed.\n"); printf("===================================\n"); -printf("Adding one line\n"); + printf("Adding one line\n"); h5_cleanup(FILENAME, fapl); exit(EXIT_SUCCESS); From 8092b0f075893c1f1f9a401758d94a1ed193ea12 Mon Sep 17 00:00:00 2001 From: "vchoi-hdfgroup.org" Date: Thu, 21 Sep 2023 13:46:41 -0500 Subject: [PATCH 4/4] Remove the line added earlier that shouldn't be there. --- test/select_io_dset.c | 1 - 1 file changed, 1 deletion(-) diff --git a/test/select_io_dset.c b/test/select_io_dset.c index dadff4e3f98..23c3f5ff9ca 100644 --- a/test/select_io_dset.c +++ b/test/select_io_dset.c @@ -3334,7 +3334,6 @@ main(void) printf("All selection I/O dataset tests passed.\n"); printf("===================================\n"); - printf("Adding one line\n"); h5_cleanup(FILENAME, fapl); exit(EXIT_SUCCESS);