From 27e35a62e94f16e20db9e82a3ea2c12243e5b507 Mon Sep 17 00:00:00 2001 From: Larry Knox Date: Mon, 27 Jan 2020 09:02:58 -0600 Subject: Restore fix of test assert fail eror undone by later commit. --- testpar/t_mpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12