X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c81c99a491282f76757c2673961e3cdee6853539..b7dc075d2c3bdf2b384cb8897d16a4c0aa8ab0f7:/teshsuite/smpi/mpich-test/coll/coll8.c diff --git a/teshsuite/smpi/mpich-test/coll/coll8.c b/teshsuite/smpi/mpich-test/coll/coll8.c deleted file mode 100644 index 6f81af31c8..0000000000 --- a/teshsuite/smpi/mpich-test/coll/coll8.c +++ /dev/null @@ -1,39 +0,0 @@ -#include "mpi.h" -#include -#include "test.h" - -int main( int argc, char **argv ) -{ - int rank, size, i; - int data; - int errors=0; - int result = -100; - int correct_result; - - MPI_Init( &argc, &argv ); - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); - MPI_Comm_size( MPI_COMM_WORLD, &size ); - - data = rank; - - MPI_Reduce ( &data, &result, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD ); - MPI_Bcast ( &result, 1, MPI_INT, 0, MPI_COMM_WORLD ); - correct_result = 0; - for(i=0;i