Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
We don't support MPI_Init( 0, 0 ), actually, and crash when this happens.
[simgrid.git] / teshsuite / smpi / mpich3-test / init / exitst1.c
index 3ea4e46..f01c6f9 100644 (file)
@@ -11,7 +11,7 @@
  */
 int main( int argc, char *argv[] )
 {
-    MPI_Init( 0, 0 );
+    MPI_Init( &argc, &argv );
     MPI_Finalize( );
     return 1;
 }