X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/61fc507b7dde640d3bd7d4818d15674436c34f97..839aa39cec9e814fb9a6ccd5b3c3b870d25c7506:/teshsuite/smpi/coll-reduce/coll-reduce.c diff --git a/teshsuite/smpi/coll-reduce/coll-reduce.c b/teshsuite/smpi/coll-reduce/coll-reduce.c index bd6ff17866..c7ca6e5593 100644 --- a/teshsuite/smpi/coll-reduce/coll-reduce.c +++ b/teshsuite/smpi/coll-reduce/coll-reduce.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. +/* Copyright (c) 2009-2022. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -46,7 +46,7 @@ int main(int argc, char *argv[]) printf("MPI_Reduce did not return MPI_ERR_TYPE for MPI_DATATYPE_NULL type\n"); status = MPI_Reduce(sb, rb, size, MPI_UNSIGNED_LONG_LONG, MPI_OP_NULL, root, MPI_COMM_WORLD); if(status!=MPI_ERR_OP) - printf("MPI_Reduce did not return MPI_ERR_COMM for MPI_OP_NULL op\n"); + printf("MPI_Reduce did not return MPI_ERR_OP for MPI_OP_NULL op\n"); status = MPI_Reduce(sb, rb, size, MPI_UNSIGNED_LONG_LONG, MPI_SUM, -1, MPI_COMM_WORLD); if(status!=MPI_ERR_ROOT) printf("MPI_Reduce did not return MPI_ERR_ROOT for root -1\n"); @@ -93,5 +93,5 @@ int main(int argc, char *argv[]) free(sb); free(rb); MPI_Finalize(); - return (EXIT_SUCCESS); + return EXIT_SUCCESS; }