From e27ad7eb97d728791190050463af8a31cf9b0e5f Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 28 Jan 2004 10:59:22 -0500 Subject: [PATCH] ENH: Added exception string to abnormal termination report. --- Source/kwsys/testProcess.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/kwsys/testProcess.c b/Source/kwsys/testProcess.c index 3e8dd2ba0..44b0db893 100644 --- a/Source/kwsys/testProcess.c +++ b/Source/kwsys/testProcess.c @@ -142,7 +142,8 @@ int runChild(const char* cmd[], int state, int exception, int value, case kwsysProcess_State_Killed: printf("Child was killed by parent.\n"); break; case kwsysProcess_State_Exception: - printf("Child terminated abnormally.\n"); + printf("Child terminated abnormally: %s\n", + kwsysProcess_GetExceptionString(kp)); result = ((exception != kwsysProcess_GetExitException(kp)) || (value != kwsysProcess_GetExitValue(kp))); break; case kwsysProcess_State_Error: