Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add MPI_Win_allocate, MPI_Win_create_dynamic, MPI_Win_attach, MPI_Win_detach, MPI_Win...
[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 }