From: Arnaud Giersch Date: Mon, 20 Mar 2023 10:31:24 +0000 (+0100) Subject: Fix test: program needs exactly 2 processes. X-Git-Tag: v3.34~272 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6e612c747f67e4de17887ee7a92ece32600c4bc4 Fix test: program needs exactly 2 processes. --- diff --git a/examples/smpi/mc/sendsend.c b/examples/smpi/mc/sendsend.c index 4735056ba4..2491a4f5d9 100644 --- a/examples/smpi/mc/sendsend.c +++ b/examples/smpi/mc/sendsend.c @@ -23,7 +23,7 @@ int main(int argc, char** argv) MPI_Comm_size(MPI_COMM_WORLD, &size); /* Get nr of tasks */ MPI_Comm_rank(MPI_COMM_WORLD, &rank); /* Get id of this process */ - if (size < 2) { + if (size != 2) { printf("run this program with exactly 2 processes (-np 2)\n"); MPI_Finalize(); exit(0);