When I tested commit
38f3d1b22 "pspp: Make a signal that indicates a bug
re-raise that signal to exit" I didn't read the output carefully enough.
John Darrington pointed out the problem.
{
case SIGABRT:
request_bug_report("Assertion Failure/Abort");
+ break;
case SIGFPE:
request_bug_report("Floating Point Exception");
+ break;
case SIGSEGV:
request_bug_report("Segmentation Violation");
+ break;
default:
request_bug_report("Unknown");
+ break;
}
/* Re-raise the signal so that we terminate with the correct status. */