diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-04-07 16:36:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 16:36:51 (GMT) |
commit | 7df729bbf3e0f0b53dda73829f05fdf709993e4c (patch) | |
tree | f665f58f22b2d26cfae1138c9e38fea58a01ef9e /testpar/t_mpi.c | |
parent | a4e833c50c002239af8c16667b1b072e6c6fa27f (diff) | |
download | hdf5-7df729bbf3e0f0b53dda73829f05fdf709993e4c.zip hdf5-7df729bbf3e0f0b53dda73829f05fdf709993e4c.tar.gz hdf5-7df729bbf3e0f0b53dda73829f05fdf709993e4c.tar.bz2 |
1.12: Brings changes from testpar over from develop (#1614)
Diffstat (limited to 'testpar/t_mpi.c')
-rw-r--r-- | testpar/t_mpi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index a883f55..96cbc4b 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -215,7 +215,7 @@ test_mpio_gb_file(char *filename) * sizes. */ if (MAINPROCESS) { /* only process 0 needs to check it*/ - HDprintf("MPI_Offset is %s %d bytes integeral type\n", is_signed ? "signed" : "unsigned", + HDprintf("MPI_Offset is %s %d bytes integral type\n", is_signed ? "signed" : "unsigned", (int)sizeof(MPI_Offset)); if (sizeof_mpi_offset <= 4 && is_signed) { HDprintf("Skipped 2GB range test " @@ -400,7 +400,7 @@ finish: * MPI-IO Test: One writes, Many reads. * Verify if only one process writes some data and then all other * processes can read them back correctly. This tests if the - * underlaying parallel I/O and file system supports parallel I/O + * underlying parallel I/O and file system supports parallel I/O * correctly. * * Algorithm: Only one process (e.g., process 0) writes some data. @@ -1086,7 +1086,7 @@ main(int argc, char **argv) H5Pset_fapl_mpio(fapl, MPI_COMM_WORLD, MPI_INFO_NULL); /* set alarm. */ - ALARM_ON; + TestAlarmOn(); /*======================================= * MPIO 1 write Many read test @@ -1195,7 +1195,7 @@ finish: } /* turn off alarm */ - ALARM_OFF; + TestAlarmOff(); h5_clean_files(FILENAME, fapl); H5close(); |