From 1105e4a88bbda546991da0314ba6060f9f624dba Mon Sep 17 00:00:00 2001 From: "Mike D. Lowis" Date: Tue, 7 Apr 2015 08:57:14 -0400 Subject: [PATCH] Added text representation of signal name to crash output --- source/atf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/atf.c b/source/atf.c index 992f681..e1017e8 100755 --- a/source/atf.c +++ b/source/atf.c @@ -35,7 +35,7 @@ static void handle_signal(int sig) { } /* Error and exit. No summary will be printed but the user will know which test has crashed. */ - fprintf(stderr,"%s:%d:0:%s:CRASH (signal: %d)\n", Curr_File, Curr_Line, Curr_Test, sig); + fprintf(stderr,"%s:%d:0:%s:CRASH (signal: %d - %s)\n", Curr_File, Curr_Line, Curr_Test, sig, sig_name); Failed++; (void)atf_print_results(); exit(1); -- 2.51.0