Blob Blame History Raw
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
/*
 *  (C) 2001 by Argonne National Laboratory.
 *      See COPYRIGHT in top-level directory.
 */
#include "mpi.h"

/*
 * This is a special test to check that mpiexec handles zero/non-zero
 * return status from an application
 */
int main(int argc, char *argv[])
{
    MPI_Init(0, 0);
    MPI_Finalize();
    return 1;
}