X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8f34741f2ecbd5b008788605bdec0333ef365007..1e09e1421647408f991d54848b90d9404e9154f6:/teshsuite/smpi/coll-bcast/coll-bcast.c diff --git a/teshsuite/smpi/coll-bcast/coll-bcast.c b/teshsuite/smpi/coll-bcast/coll-bcast.c index 0e22735ee8..a53771ad4c 100644 --- a/teshsuite/smpi/coll-bcast/coll-bcast.c +++ b/teshsuite/smpi/coll-bcast/coll-bcast.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2013-2014. The SimGrid Team. +/* Copyright (c) 2009, 2013-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -9,7 +9,9 @@ int main(int argc, char **argv) { - int i, size, rank; + int i; + int size; + int rank; int count = 2048; MPI_Init(&argc, &argv); @@ -32,7 +34,7 @@ int main(int argc, char **argv) xbt_free(values); count = 4096; - values = (int *) xbt_malloc(count * sizeof(int)); + values = (int *) xbt_malloc(count * sizeof(int)); for (i = 0; i < count; i++) values[i] = (size -1 == rank) ? 17 : 3; @@ -44,11 +46,9 @@ int main(int argc, char **argv) if (values[i]==17) good++; printf("[%d] number of values equals to 17: %d\n", rank, good); - if (rank == 0) { - if (status != MPI_SUCCESS) { - printf("bcast returned %d\n", status); - fflush(stdout); - } + if (rank == 0 && status != MPI_SUCCESS) { + printf("bcast returned %d\n", status); + fflush(stdout); } xbt_free(values); MPI_Finalize();