Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / teshsuite / smpi / mpich3-test / init / exitst1.c
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  *  (C) 2001 by Argonne National Laboratory.
4  *      See COPYRIGHT in top-level directory.
5  */
6 #include "mpi.h"
7
8 /* 
9  * This is a special test to check that mpiexec handles zero/non-zero 
10  * return status from an application
11  */
12 int main( int argc, char *argv[] )
13 {
14     MPI_Init( &argc, &argv );
15     MPI_Finalize( );
16     return 1;
17 }