Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update RMA tests
[simgrid.git] / teshsuite / smpi / mpich3-test / rma / allocmem.c
index 1969941..1255628 100644 (file)
 static char MTEST_Descrip[] = "Simple test that alloc_mem and free_mem work together";
 */
 
-int main( int argc, char *argv[] )
+int main(int argc, char *argv[])
 {
     int errs = 0, err;
     int j, count;
     char *ap;
 
-    MTest_Init( &argc, &argv );
+    MTest_Init(&argc, &argv);
 
-    MPI_Errhandler_set( MPI_COMM_WORLD, MPI_ERRORS_RETURN );
-    for (count=1; count < 128000; count *= 2) {
-       
-       err = MPI_Alloc_mem( count, MPI_INFO_NULL, &ap );
-       if (err) {
-           int errclass;
-           /* An error of  MPI_ERR_NO_MEM is allowed */
-           MPI_Error_class( err, &errclass );
-           if (errclass != MPI_ERR_NO_MEM) {
-               errs++;
-               MTestPrintError( err );
-           }
-           
-       }
-       else {
-           /* Access all of this memory */
-           for (j=0; j<count; j++) {
-               ap[j] = (char)(j & 0x7f);
-           }
-           MPI_Free_mem( ap );
-       }
+    MPI_Errhandler_set(MPI_COMM_WORLD, MPI_ERRORS_RETURN);
+    for (count = 1; count < 128000; count *= 2) {
+
+        err = MPI_Alloc_mem(count, MPI_INFO_NULL, &ap);
+        if (err) {
+            int errclass;
+            /* An error of  MPI_ERR_NO_MEM is allowed */
+            MPI_Error_class(err, &errclass);
+            if (errclass != MPI_ERR_NO_MEM) {
+                errs++;
+                MTestPrintError(err);
+            }
+
+        }
+        else {
+            /* Access all of this memory */
+            for (j = 0; j < count; j++) {
+                ap[j] = (char) (j & 0x7f);
+            }
+            MPI_Free_mem(ap);
+        }
     }
 
-    MTest_Finalize( errs );
+    MTest_Finalize(errs);
     MPI_Finalize();
     return 0;
 }