X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8006a03b1ef66a0ddd4a4983ef170781a87a7225..48eb2f1b9262fc74f527816c348ed2aa6efa9f65:/teshsuite/smpi/mpich3-test/datatype/simple-commit.c diff --git a/teshsuite/smpi/mpich3-test/datatype/simple-commit.c b/teshsuite/smpi/mpich3-test/datatype/simple-commit.c index 2caa4e8b3a..af79be328e 100644 --- a/teshsuite/smpi/mpich3-test/datatype/simple-commit.c +++ b/teshsuite/smpi/mpich3-test/datatype/simple-commit.c @@ -26,33 +26,33 @@ int main(int argc, char **argv) parse_args(argc, argv); /* To improve reporting of problems about operations, we - change the error handler to errors return */ - MPI_Comm_set_errhandler( MPI_COMM_WORLD, MPI_ERRORS_RETURN ); + * change the error handler to errors return */ + MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_RETURN); type = MPI_INT; mpi_err = MPI_Type_commit(&type); if (mpi_err != MPI_SUCCESS) { - if (verbose) { - fprintf(stderr, "MPI_Type_commit of MPI_INT failed.\n"); - } - errs++; + if (verbose) { + fprintf(stderr, "MPI_Type_commit of MPI_INT failed.\n"); + } + errs++; } type = MPI_FLOAT_INT; mpi_err = MPI_Type_commit(&type); if (mpi_err != MPI_SUCCESS) { - if (verbose) { - fprintf(stderr, "MPI_Type_commit of MPI_FLOAT_INT failed.\n"); - } - errs++; + if (verbose) { + fprintf(stderr, "MPI_Type_commit of MPI_FLOAT_INT failed.\n"); + } + errs++; } /* print message and exit */ if (errs) { - fprintf(stderr, "Found %d errors\n", errs); + fprintf(stderr, "Found %d errors\n", errs); } else { - printf(" No Errors\n"); + printf(" No Errors\n"); } MPI_Finalize(); return 0; @@ -61,18 +61,18 @@ int main(int argc, char **argv) int parse_args(int argc, char **argv) { /* - int ret; - - while ((ret = getopt(argc, argv, "v")) >= 0) - { - switch (ret) { - case 'v': - verbose = 1; - break; - } - } - */ + * int ret; + * + * while ((ret = getopt(argc, argv, "v")) >= 0) + * { + * switch (ret) { + * case 'v': + * verbose = 1; + * break; + * } + * } + */ if (argc > 1 && strcmp(argv[1], "-v") == 0) - verbose = 1; + verbose = 1; return 0; }