From 14a764d0473e5137d70be1909b292579acb112ce Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Sun, 18 Aug 2019 23:36:50 +0200 Subject: [PATCH] This particular RMA test is filled with stupid calls... We send errors for most of them. So let's put that to rest by setting MPI_ERRORS_RETURN for this one. --- teshsuite/smpi/mpich3-test/rma/badrma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teshsuite/smpi/mpich3-test/rma/badrma.c b/teshsuite/smpi/mpich3-test/rma/badrma.c index 09fd3d7bae..8c642c6514 100644 --- a/teshsuite/smpi/mpich3-test/rma/badrma.c +++ b/teshsuite/smpi/mpich3-test/rma/badrma.c @@ -96,7 +96,7 @@ int main(int argc, char *argv[]) types[3] = MPI_DOUBLE; MPI_Win_create(win_buf, SIZE * sizeof(int), sizeof(int), MPI_INFO_NULL, MPI_COMM_WORLD, &win); - + MPI_Win_set_errhandler(win, MPI_ERRORS_RETURN); MPI_Win_fence(0, win); if (rank == 0) { -- 2.20.1