X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/19b3962253112b19308537bc2400de141c119d99..1e09e1421647408f991d54848b90d9404e9154f6:/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 9b486d2441..83ba94a2c3 100644 --- a/teshsuite/smpi/coll-allgather/coll-allgather.c +++ b/teshsuite/smpi/coll-allgather/coll-allgather.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2010, 2013-2014. The SimGrid Team. +/* Copyright (c) 2009-2010, 2013-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -28,7 +28,7 @@ int main(int argc, char *argv[]) int count = 2; int* sb = (int *) xbt_malloc(count * sizeof(int)); int* rb = (int *) xbt_malloc(count * size * sizeof(int)); - + for (int i = 0; i < count; ++i) sb[i] = rank * count + i; for (int i = 0; i < count * size; ++i) @@ -46,11 +46,9 @@ int main(int argc, char *argv[]) printf("%d ", rb[i]); printf("]\n"); - if (rank == 0) { - if (status != MPI_SUCCESS) { - printf("allgather returned %d\n", status); - fflush(stdout); - } + if (rank == 0 && status != MPI_SUCCESS) { + printf("allgather returned %d\n", status); + fflush(stdout); } xbt_free(sb); xbt_free(rb);