1
1
openmpi/orte/test/system/segfault.c
Ralph Castain 92733b13d9 Add a couple of new tests to the orte system.
Modify the job_complete check so we don't kill jobs when a single proc was terminated by ORTE command via plm.terminate_procs

Still dies gracefully with a ctrl-c, and behaves as before when using plm.terminate_job

This commit was SVN r22227.
2009-11-20 01:47:49 +00:00

19 строки
191 B
C

/* -*- C -*-
*
* $HEADER$
*
* A program that just segfaults
*/
#include <stdio.h>
int main(int argc, char* argv[])
{
double pi;
char *dum=NULL;
pi = (double)*dum;
}