1
1
openmpi/test/simple/init-exit77.c
Ralph Castain 7e2874a83d
Save the old ORTE simple tests
Useful when debugging RTE-related issues

Not for inclusion in the tarball - just added to git repo for use by
developers.

Signed-off-by: Ralph Castain <rhc@pmix.org>
2020-02-21 06:15:06 -08:00

14 строки
211 B
C

#include <stdio.h>
#include <stdlib.h>
#include "mpi.h"
int main(int argc, char **argv) {
int debugme = 1;
MPI_Init(&argc, &argv);
printf("init...\n");
fflush(0);
MPI_Finalize();
exit(77);
}