summaryrefslogtreecommitdiffstats
path: root/testpar/t_subfiling_vfd.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 15:31:32 (GMT)
committerGitHub <noreply@github.com>2023-06-28 15:31:32 (GMT)
commit187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98 (patch)
treebaffa167d0796786241aef6b0ce76d4adec3b66e /testpar/t_subfiling_vfd.c
parent7a44581a84778a1346a2fd5b6cca7d9db905a321 (diff)
downloadhdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.zip
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.gz
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.bz2
Rename HD(f)printf() to (f)printf() (#3194)
Diffstat (limited to 'testpar/t_subfiling_vfd.c')
-rw-r--r--testpar/t_subfiling_vfd.c66
1 files changed, 33 insertions, 33 deletions
diff --git a/testpar/t_subfiling_vfd.c b/testpar/t_subfiling_vfd.c
index ba22718..c30d551 100644
--- a/testpar/t_subfiling_vfd.c
+++ b/testpar/t_subfiling_vfd.c
@@ -941,7 +941,7 @@ test_selection_strategies(void)
case SELECT_IOC_WITH_CONFIG:
case ioc_selection_options:
default:
- HDprintf("invalid IOC selection strategy\n");
+ printf("invalid IOC selection strategy\n");
MPI_Abort(comm_g, -1);
}
@@ -1957,13 +1957,13 @@ test_subfiling_h5fuse(void)
int ret;
if ((ret = WEXITSTATUS(status)) != 0) {
- HDprintf("h5fuse process exited with error code %d\n", ret);
+ printf("h5fuse process exited with error code %d\n", ret);
HDfflush(stdout);
MPI_Abort(comm_g, -1);
}
}
else {
- HDprintf("h5fuse process terminated abnormally\n");
+ printf("h5fuse process terminated abnormally\n");
HDfflush(stdout);
MPI_Abort(comm_g, -1);
}
@@ -2033,7 +2033,7 @@ test_subfiling_h5fuse(void)
/* Delete the configuration file */
if (HDremove(filename_buf) < 0) {
- HDprintf("couldn't remove Subfiling VFD configuration file '%s'\n", filename_buf);
+ printf("couldn't remove Subfiling VFD configuration file '%s'\n", filename_buf);
nerrors++;
}
@@ -2044,7 +2044,7 @@ test_subfiling_h5fuse(void)
/* Delete the subfile */
if (HDremove(filename_buf) < 0) {
- HDprintf("couldn't remove subfile '%s'\n", filename_buf);
+ printf("couldn't remove subfile '%s'\n", filename_buf);
nerrors++;
}
}
@@ -2129,27 +2129,27 @@ main(int argc, char **argv)
/* Initialize MPI */
if (MPI_SUCCESS != (mpi_code_g = MPI_Init_thread(&argc, &argv, required, &provided))) {
- HDprintf("MPI_Init_thread failed with error code %d\n", mpi_code_g);
+ printf("MPI_Init_thread failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_rank(comm_g, &mpi_rank))) {
- HDprintf("MPI_Comm_rank failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_rank failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (provided != required) {
if (MAINPROCESS)
- HDprintf("MPI doesn't support MPI_Init_thread with MPI_THREAD_MULTIPLE\n");
+ printf("MPI doesn't support MPI_Init_thread with MPI_THREAD_MULTIPLE\n");
nerrors++;
goto exit;
}
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_size(comm_g, &mpi_size))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_size failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_size failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
@@ -2158,19 +2158,19 @@ main(int argc, char **argv)
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_split_type(comm_g, MPI_COMM_TYPE_SHARED, mpi_rank,
MPI_INFO_NULL, &node_local_comm))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_split_type failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_split_type failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_size(node_local_comm, &node_local_size))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_size failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_size failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_rank(node_local_comm, &node_local_rank))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_rank failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_rank failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
@@ -2180,7 +2180,7 @@ main(int argc, char **argv)
if (MPI_SUCCESS !=
(mpi_code_g = MPI_Allreduce(MPI_IN_PLACE, &num_nodes_g, 1, MPI_INT, MPI_SUM, comm_g))) {
if (MAINPROCESS)
- HDprintf("MPI_Allreduce failed with error code %d\n", mpi_code_g);
+ printf("MPI_Allreduce failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
@@ -2193,32 +2193,32 @@ main(int argc, char **argv)
*/
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_split(comm_g, node_local_rank, mpi_rank, &ioc_comm))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_split failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_split failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_size(ioc_comm, &ioc_comm_size))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_size failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_size failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (MPI_SUCCESS != (mpi_code_g = MPI_Comm_rank(ioc_comm, &ioc_comm_rank))) {
if (MAINPROCESS)
- HDprintf("MPI_Comm_rank failed with error code %d\n", mpi_code_g);
+ printf("MPI_Comm_rank failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
if (H5dont_atexit() < 0) {
if (MAINPROCESS)
- HDprintf("Failed to turn off atexit processing. Continue.\n");
+ printf("Failed to turn off atexit processing. Continue.\n");
}
H5open();
if (MAINPROCESS) {
- HDprintf("Testing Subfiling VFD functionality\n");
+ printf("Testing Subfiling VFD functionality\n");
}
TestAlarmOn();
@@ -2236,7 +2236,7 @@ main(int argc, char **argv)
if (mpi_size > 1) {
if (MPI_SUCCESS != (mpi_code_g = MPI_Bcast(&seed, 1, MPI_UNSIGNED, 0, comm_g))) {
if (MAINPROCESS)
- HDprintf("MPI_Bcast failed with error code %d\n", mpi_code_g);
+ printf("MPI_Bcast failed with error code %d\n", mpi_code_g);
nerrors++;
goto exit;
}
@@ -2245,13 +2245,13 @@ main(int argc, char **argv)
srand(seed);
if (MAINPROCESS)
- HDprintf("Using seed: %u\n\n", seed);
+ printf("Using seed: %u\n\n", seed);
/* Allocate buffer for possible config file directory specified */
config_dir = HDmalloc(PATH_MAX);
if (!config_dir) {
if (MAINPROCESS)
- HDprintf("couldn't allocate space for subfiling config file directory buffer\n");
+ printf("couldn't allocate space for subfiling config file directory buffer\n");
nerrors++;
goto exit;
}
@@ -2312,7 +2312,7 @@ main(int argc, char **argv)
if (HDsetenv(H5FD_SUBFILING_STRIPE_SIZE, tmp, 1) < 0) {
if (MAINPROCESS)
- HDprintf("HDsetenv failed\n");
+ printf("HDsetenv failed\n");
nerrors++;
goto exit;
}
@@ -2329,7 +2329,7 @@ main(int argc, char **argv)
if (HDsetenv(H5FD_SUBFILING_IOC_PER_NODE, ioc_per_node_str, 1) < 0) {
if (MAINPROCESS)
- HDprintf("HDsetenv failed\n");
+ printf("HDsetenv failed\n");
nerrors++;
goto exit;
}
@@ -2339,7 +2339,7 @@ main(int argc, char **argv)
if (ioc_thread_pool_size_g < 0) {
if (HDsetenv(H5FD_IOC_THREAD_POOL_SIZE, "2", 1) < 0) {
if (MAINPROCESS)
- HDprintf("HDsetenv failed\n");
+ printf("HDsetenv failed\n");
nerrors++;
goto exit;
}
@@ -2364,7 +2364,7 @@ main(int argc, char **argv)
if (MAINPROCESS) {
if ((HDmkdir(SUBFILING_CONFIG_FILE_DIR, (mode_t)0755) < 0) && (errno != EEXIST)) {
- HDprintf("couldn't create temporary testing directory\n");
+ printf("couldn't create temporary testing directory\n");
mkdir_success = 0;
}
else
@@ -2376,14 +2376,14 @@ main(int argc, char **argv)
if (!mkdir_success) {
if (MAINPROCESS)
- HDprintf("HDmkdir failed\n");
+ printf("HDmkdir failed\n");
nerrors++;
goto exit;
}
if (HDsetenv(H5FD_SUBFILING_CONFIG_FILE_PREFIX, SUBFILING_CONFIG_FILE_DIR, 1) < 0) {
if (MAINPROCESS)
- HDprintf("HDsetenv failed\n");
+ printf("HDsetenv failed\n");
nerrors++;
goto exit;
}
@@ -2391,7 +2391,7 @@ main(int argc, char **argv)
else {
if (HDsetenv(H5FD_SUBFILING_CONFIG_FILE_PREFIX, ".", 1) < 0) {
if (MAINPROCESS)
- HDprintf("HDsetenv failed\n");
+ printf("HDsetenv failed\n");
nerrors++;
goto exit;
}
@@ -2413,7 +2413,7 @@ main(int argc, char **argv)
num_iocs_g = mpi_size;
if (MAINPROCESS) {
- HDprintf("Re-running tests with environment variables set\n");
+ printf("Re-running tests with environment variables set\n");
}
for (size_t i = 0; i < ARRAY_SIZE(tests); i++) {
@@ -2448,14 +2448,14 @@ exit:
if (MAINPROCESS) {
if (HDrmdir(SUBFILING_CONFIG_FILE_DIR) < 0 && (errno != ENOENT)) {
- HDprintf("couldn't remove temporary testing directory\n");
+ printf("couldn't remove temporary testing directory\n");
nerrors++;
}
}
if (nerrors) {
if (MAINPROCESS)
- HDprintf("*** %d TEST ERROR%s OCCURRED ***\n", nerrors, nerrors > 1 ? "S" : "");
+ printf("*** %d TEST ERROR%s OCCURRED ***\n", nerrors, nerrors > 1 ? "S" : "");
}
TestAlarmOff();
@@ -2478,8 +2478,8 @@ int
main(void)
{
h5_reset();
- HDprintf("Testing Subfiling VFD functionality\n");
- HDprintf("SKIPPED - Subfiling VFD not built\n");
+ printf("Testing Subfiling VFD functionality\n");
+ printf("SKIPPED - Subfiling VFD not built\n");
HDexit(EXIT_SUCCESS);
}