Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / teshsuite / smpi / mpich3-test / datatype / simple-commit.c
index 2caa4e8..af79be3 100644 (file)
@@ -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;
 }