Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix the compilation of MPICH3 tests with the absolute paranoid flags (enable_maintainer)
[simgrid.git] / teshsuite / smpi / mpich3-test / pt2pt / inactivereq.c
index 1f4b6af..fd9e7d0 100644 (file)
@@ -9,32 +9,32 @@
 #include "mpitest.h"
 
 /* This test program checks that the point-to-point completion routines
-   can be applied to an inactive persistent request, as required by the 
-   MPI-1 standard. See section 3.7.3, for example, 
+   can be applied to an inactive persistent request, as required by the
+   MPI-1 standard. See section 3.7.3, for example,
 
-   One is allowed to call MPI TEST with a null or inactive request argument. 
+   One is allowed to call MPI TEST with a null or inactive request argument.
    In such a case the operation returns with flag = true and empty status.
 
 */
 
-int StatusEmpty( MPI_Status *s );
-int StatusEmpty( MPI_Status *s )
+int StatusEmpty(MPI_Status * s);
+int StatusEmpty(MPI_Status * s)
 {
     int errs = 0;
     int count = 10;
 
     if (s->MPI_TAG != MPI_ANY_TAG) {
-       errs++;
-       printf( "MPI_TAG not MPI_ANY_TAG in status\n" );
+        errs++;
+        printf("MPI_TAG not MPI_ANY_TAG in status\n");
     }
     if (s->MPI_SOURCE != MPI_ANY_SOURCE) {
-       errs++;
-       printf( "MPI_SOURCE not MPI_ANY_SOURCE in status\n" );
+        errs++;
+        printf("MPI_SOURCE not MPI_ANY_SOURCE in status\n");
     }
-    MPI_Get_count( s, MPI_INT, &count );
+    MPI_Get_count(s, MPI_INT, &count);
     if (count != 0) {
-       errs++;
-       printf( "count in status is not 0\n" );
+        errs++;
+        printf("count in status is not 0\n");
     }
     /* Return true only if status passed all tests */
     return errs ? 0 : 1;
@@ -43,7 +43,7 @@ int StatusEmpty( MPI_Status *s )
 int main(int argc, char *argv[])
 {
     MPI_Request r;
-    MPI_Status  s;
+    MPI_Status s;
     int errs = 0;
     int flag;
     int buf[10];
@@ -52,115 +52,116 @@ int main(int argc, char *argv[])
     int dest = 0;
     int rank, size;
 
-    MTest_Init( &argc, &argv );
+    MTest_Init(&argc, &argv);
 
-    MPI_Comm_size( MPI_COMM_WORLD, &size );
-    MPI_Comm_rank( MPI_COMM_WORLD, &rank );
+    MPI_Comm_size(MPI_COMM_WORLD, &size);
+    MPI_Comm_rank(MPI_COMM_WORLD, &rank);
 
     /* Create a persistent send request */
-    MPI_Send_init( buf, 10, MPI_INT, dest, tag, MPI_COMM_WORLD, &r );
+    MPI_Send_init(buf, 10, MPI_INT, dest, tag, MPI_COMM_WORLD, &r);
 
     flag = 0;
     s.MPI_TAG = 10;
     s.MPI_SOURCE = 10;
-    MPI_Test( &r, &flag, &s );
+    MPI_Test(&r, &flag, &s);
     if (!flag) {
-       errs++;
-       printf( "Flag not true after MPI_Test (send)\n" );
-       printf( "Aborting further tests to avoid hanging in MPI_Wait\n" );
-       MTest_Finalize( errs );
-       MPI_Finalize();
-       return 0;
+        errs++;
+        printf("Flag not true after MPI_Test (send)\n");
+        printf("Aborting further tests to avoid hanging in MPI_Wait\n");
+        MTest_Finalize(errs);
+        MPI_Finalize();
+        return 0;
     }
-    if (!StatusEmpty( &s )) {
-       errs++;
-       printf( "Status not empty after MPI_Test (send)\n" );
+    if (!StatusEmpty(&s)) {
+        errs++;
+        printf("Status not empty after MPI_Test (send)\n");
     }
 
     s.MPI_TAG = 10;
     s.MPI_SOURCE = 10;
-    MPI_Wait( &r, &s );
-    if (!StatusEmpty( &s )) {
-       errs++;
-       printf( "Status not empty after MPI_Wait (send)\n" );
+    MPI_Wait(&r, &s);
+    if (!StatusEmpty(&s)) {
+        errs++;
+        printf("Status not empty after MPI_Wait (send)\n");
     }
 
     /* Now try to use that request, then check again */
     if (rank == 0) {
-       int i;
-       MPI_Request *rr = (MPI_Request *)malloc(size * sizeof(MPI_Request));
-       for (i=0; i<size; i++) {
-           MPI_Irecv( rbuf, 10, MPI_INT, i, tag, MPI_COMM_WORLD, &rr[i] );
-       }
-       MPI_Start( &r );
-       MPI_Wait( &r, &s );
-       MPI_Waitall( size, rr, MPI_STATUSES_IGNORE );
+        int i;
+        MPI_Request *rr = (MPI_Request *) malloc(size * sizeof(MPI_Request));
+        for (i = 0; i < size; i++) {
+            MPI_Irecv(rbuf, 10, MPI_INT, i, tag, MPI_COMM_WORLD, &rr[i]);
+        }
+        MPI_Start(&r);
+        MPI_Wait(&r, &s);
+        MPI_Waitall(size, rr, MPI_STATUSES_IGNORE);
+        free(rr);
     }
     else {
-       MPI_Start( &r );
-       MPI_Wait( &r, &s );
+        MPI_Start(&r);
+        MPI_Wait(&r, &s);
     }
 
     flag = 0;
     s.MPI_TAG = 10;
     s.MPI_SOURCE = 10;
-    MPI_Test( &r, &flag, &s );
+    MPI_Test(&r, &flag, &s);
     if (!flag) {
-       errs++;
-       printf( "Flag not true after MPI_Test (send)\n" );
-       printf( "Aborting further tests to avoid hanging in MPI_Wait\n" );
-       MTest_Finalize( errs );
-       MPI_Finalize();
-       return 0;
+        errs++;
+        printf("Flag not true after MPI_Test (send)\n");
+        printf("Aborting further tests to avoid hanging in MPI_Wait\n");
+        MTest_Finalize(errs);
+        MPI_Finalize();
+        return 0;
     }
-    if (!StatusEmpty( &s )) {
-       errs++;
-       printf( "Status not empty after MPI_Test (send)\n" );
+    if (!StatusEmpty(&s)) {
+        errs++;
+        printf("Status not empty after MPI_Test (send)\n");
     }
 
     s.MPI_TAG = 10;
     s.MPI_SOURCE = 10;
-    MPI_Wait( &r, &s );
-    if (!StatusEmpty( &s )) {
-       errs++;
-       printf( "Status not empty after MPI_Wait (send)\n" );
+    MPI_Wait(&r, &s);
+    if (!StatusEmpty(&s)) {
+        errs++;
+        printf("Status not empty after MPI_Wait (send)\n");
     }
 
-    
 
-    MPI_Request_free( &r );
+
+    MPI_Request_free(&r);
 
     /* Create a persistent receive request */
-    MPI_Recv_init( buf, 10, MPI_INT, dest, tag, MPI_COMM_WORLD, &r );
+    MPI_Recv_init(buf, 10, MPI_INT, dest, tag, MPI_COMM_WORLD, &r);
 
     flag = 0;
     s.MPI_TAG = 10;
     s.MPI_SOURCE = 10;
-    MPI_Test( &r, &flag, &s );
+    MPI_Test(&r, &flag, &s);
     if (!flag) {
-       errs++;
-       printf( "Flag not true after MPI_Test (recv)\n" );
-       printf( "Aborting further tests to avoid hanging in MPI_Wait\n" );
-       MTest_Finalize( errs );
-       MPI_Finalize();
-       return 0;
+        errs++;
+        printf("Flag not true after MPI_Test (recv)\n");
+        printf("Aborting further tests to avoid hanging in MPI_Wait\n");
+        MTest_Finalize(errs);
+        MPI_Finalize();
+        return 0;
     }
-    if (!StatusEmpty( &s )) {
-       errs++;
-       printf( "Status not empty after MPI_Test (recv)\n" );
+    if (!StatusEmpty(&s)) {
+        errs++;
+        printf("Status not empty after MPI_Test (recv)\n");
     }
 
     s.MPI_TAG = 10;
     s.MPI_SOURCE = 10;
-    MPI_Wait( &r, &s );
-    if (!StatusEmpty( &s )) {
-       errs++;
-       printf( "Status not empty after MPI_Wait (recv)\n" );
+    MPI_Wait(&r, &s);
+    if (!StatusEmpty(&s)) {
+        errs++;
+        printf("Status not empty after MPI_Wait (recv)\n");
     }
 
-    MPI_Request_free( &r );
-    
-    MTest_Finalize( errs );
+    MPI_Request_free(&r);
+
+    MTest_Finalize(errs);
     MPI_Finalize();
     return 0;
 }