X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/59a1dfe76a80ea4facc6231d05b861e6966954d2..ea74f5d95928a521a588737e81f1de94eef25d19:/teshsuite/smpi/coll-allgather/coll-allgather.c diff --git a/teshsuite/smpi/coll-allgather/coll-allgather.c b/teshsuite/smpi/coll-allgather/coll-allgather.c index 787a3bb005..a6600f83f9 100644 --- a/teshsuite/smpi/coll-allgather/coll-allgather.c +++ b/teshsuite/smpi/coll-allgather/coll-allgather.c @@ -1,5 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,6 +8,8 @@ #include #include #include "mpi.h" +#include +#include "simgrid/actor.h" int main(int argc, char *argv[]) { @@ -16,9 +17,13 @@ int main(int argc, char *argv[]) int size; int status; + int randomTime = sg_actor_self_get_pid() % 5; + sleep(randomTime); + MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WORLD, &size); + MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_RETURN); int count = 2; int* sb = (int *) xbt_malloc(count * sizeof(int)); @@ -70,5 +75,5 @@ int main(int argc, char *argv[]) xbt_free(sb); xbt_free(rb); MPI_Finalize(); - return (EXIT_SUCCESS); + return EXIT_SUCCESS; }