summaryrefslogtreecommitdiffstats
path: root/testpar/t_mpi.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-02-15 14:55:38 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-02-15 14:55:38 (GMT)
commitf28193d92c629b8f6b311c55a02d3672b30fe7ec (patch)
treea3c2fb737934905ca1bc4a6abd826dcac0b646b9 /testpar/t_mpi.c
parent86557389dacbc08571276543cb644e8dba48c0f2 (diff)
downloadhdf5-f28193d92c629b8f6b311c55a02d3672b30fe7ec.zip
hdf5-f28193d92c629b8f6b311c55a02d3672b30fe7ec.tar.gz
hdf5-f28193d92c629b8f6b311c55a02d3672b30fe7ec.tar.bz2
[svn-r4975] Description:
Users were alarmed by the OFFSET overflow and GB file size tests. Those tests only checks the limits of the MPI implementation, not really as an error. Solution: Changed the VRFY macro to indicate it is an "ERROR". Modified the INFO macro to print messages as "REMARK (not an error)" so that users would not be alarmed. Added an explanation string in the GB file size write/read. Platforms tested: eirene and modi4 (parallel)
Diffstat (limited to 'testpar/t_mpi.c')
-rw-r--r--testpar/t_mpi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c
index d0e6b9d..02e406e 100644
--- a/testpar/t_mpi.c
+++ b/testpar/t_mpi.c
@@ -273,7 +273,7 @@ test_mpio_gb_file(char *filename)
printf("proc %d: writing %d bytes at offset %lld\n",
mpi_rank, MB, mpi_off);
mrc = MPI_File_write_at(fh, mpi_off, buf, MB, MPI_BYTE, &mpi_stat);
- INFO((mrc==MPI_SUCCESS), "");
+ INFO((mrc==MPI_SUCCESS), "GB size file write");
if (mrc!=MPI_SUCCESS)
writerrs++;
}
@@ -306,7 +306,7 @@ test_mpio_gb_file(char *filename)
printf("proc %d: read from mpi_off=%016llx, %lld\n",
mpi_rank, mpi_off, mpi_off);
mrc = MPI_File_read_at(fh, mpi_off, buf, MB, MPI_BYTE, &mpi_stat);
- INFO((mrc==MPI_SUCCESS), "");
+ INFO((mrc==MPI_SUCCESS), "GB size file read");
expected = i*mpi_size + (mpi_size - mpi_rank - 1);
vrfyerrs=0;
for (j=0; j<MB; j++){