diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2023-03-24 23:42:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-24 23:42:46 (GMT) |
commit | 43e4e64d886e9072a6075c6369e84c0e273fa44f (patch) | |
tree | a65896c37e5af4919e8cb169c2b40c44ad07017e /testpar | |
parent | 3fa338013907494ccfe93b8e22d89185a39067ff (diff) | |
download | hdf5-43e4e64d886e9072a6075c6369e84c0e273fa44f.zip hdf5-43e4e64d886e9072a6075c6369e84c0e273fa44f.tar.gz hdf5-43e4e64d886e9072a6075c6369e84c0e273fa44f.tar.bz2 |
1 10 revert 2615 (#2629)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_bigio.c | 4 | ||||
-rw-r--r-- | testpar/t_filters_parallel.c | 4 | ||||
-rw-r--r-- | testpar/t_mpi.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/testpar/t_bigio.c b/testpar/t_bigio.c index d122f73..146d815 100644 --- a/testpar/t_bigio.c +++ b/testpar/t_bigio.c @@ -1849,7 +1849,7 @@ main(int argc, char **argv) HDprintf("Failed to turn off atexit processing. Continue.\n"); /* set alarm. */ - TestAlarmOn(); + ALARM_ON; ExpressMode = do_express_test(mpi_rank_g); @@ -1872,7 +1872,7 @@ main(int argc, char **argv) } /* turn off alarm */ - TestAlarmOff(); + ALARM_OFF; if (mpi_rank_g == 0) HDremove(FILENAME[0]); diff --git a/testpar/t_filters_parallel.c b/testpar/t_filters_parallel.c index 568fb48..3bd52a4 100644 --- a/testpar/t_filters_parallel.c +++ b/testpar/t_filters_parallel.c @@ -8799,7 +8799,7 @@ main(int argc, char **argv) if (VERBOSE_MED) h5_show_hostname(); - TestAlarmOn(); + ALARM_ON; num_filters = ARRAY_SIZE(filterIDs); @@ -8967,7 +8967,7 @@ exit: if (MAINPROCESS) HDprintf("*** %d TEST ERROR%s OCCURRED ***\n", nerrors, nerrors > 1 ? "S" : ""); - TestAlarmOff(); + ALARM_OFF; h5_clean_files(FILENAME, fapl_id); fapl_id = H5I_INVALID_HID; diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index 8853863..072e230 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -1095,7 +1095,7 @@ main(int argc, char **argv) H5Pset_fapl_mpio(fapl, MPI_COMM_WORLD, MPI_INFO_NULL); /* set alarm. */ - TestAlarmOn(); + ALARM_ON; /*======================================= * MPIO 1 write Many read test @@ -1204,7 +1204,7 @@ finish: } /* turn off alarm */ - TestAlarmOff(); + ALARM_OFF; h5_clean_files(FILENAME, fapl); H5close(); |