X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..420538ebb2f0490d1d311aa3e538fadd68b6eaf6:/teshsuite/smpi/coll-allgatherv/coll-allgatherv.c diff --git a/teshsuite/smpi/coll-allgatherv/coll-allgatherv.c b/teshsuite/smpi/coll-allgatherv/coll-allgatherv.c index a7806692e6..7838b3fef5 100644 --- a/teshsuite/smpi/coll-allgatherv/coll-allgatherv.c +++ b/teshsuite/smpi/coll-allgatherv/coll-allgatherv.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. +/* Copyright (c) 2009-2021. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -48,8 +48,8 @@ int main(int argc, char *argv[]) if(status!=MPI_ERR_BUFFER) printf("MPI_Allgatherv did not return MPI_ERR_BUFFER for empty recvbuf\n"); status = MPI_Allgatherv(sb, recv_counts[rank], MPI_INT, rb, NULL, recv_disps, MPI_INT, MPI_COMM_WORLD); - if(status!=MPI_ERR_ARG) - printf("MPI_Allgatherv did not return MPI_ERR_ARG for NULL recvcounts\n"); + if(status!=MPI_ERR_COUNT) + printf("MPI_Allgatherv did not return MPI_ERR_COUNT for NULL recvcounts\n"); status = MPI_Allgatherv(sb, recv_counts[rank], MPI_INT, rb, recv_counts, NULL, MPI_INT, MPI_COMM_WORLD); if(status!=MPI_ERR_ARG) printf("MPI_Allgatherv did not return MPI_ERR_ARG for NULL recvdisps\n"); @@ -86,5 +86,5 @@ int main(int argc, char *argv[]) xbt_free(recv_counts); xbt_free(recv_disps); MPI_Finalize(); - return (EXIT_SUCCESS); + return EXIT_SUCCESS; }