summaryrefslogtreecommitdiffstats
path: root/testpar/t_mpi.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-01-27 15:02:58 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-01-27 15:02:58 (GMT)
commit1c812fcd5d475afb7e65ed28d84990f96eefa649 (patch)
tree424f2b9cc16d93c0654df5a2a76998c8fd70c9ed /testpar/t_mpi.c
parent5638d8860f3192f9830088ede372006a25bebbd2 (diff)
downloadhdf5-1c812fcd5d475afb7e65ed28d84990f96eefa649.zip
hdf5-1c812fcd5d475afb7e65ed28d84990f96eefa649.tar.gz
hdf5-1c812fcd5d475afb7e65ed28d84990f96eefa649.tar.bz2
Restore fix of test assert fail eror undone by later commit.
Diffstat (limited to 'testpar/t_mpi.c')
-rw-r--r--testpar/t_mpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c
index 2dbb4d2..670e02b 100644
--- a/testpar/t_mpi.c
+++ b/testpar/t_mpi.c
@@ -351,7 +351,7 @@ static int test_mpio_gb_file(char *filename) {
mrc = MPI_File_read_at(fh, mpi_off, buf, MB, MPI_BYTE,
&mpi_stat);
INFO((mrc == MPI_SUCCESS), "GB size file read");
- H5_CHECKED_ASSIGN(expected, int8_t, i * mpi_size + (mpi_size - mpi_rank - 1), int);
+ expected = (int8_t)(i * mpi_size + (mpi_size - mpi_rank - 1));
vrfyerrs = 0;
for (j = 0; j < MB; j++) {
if ((*(buf + j) != expected)