diff --git a/lib/test/cryb_t_main.c b/lib/test/cryb_t_main.c index 7d10b61..994b00e 100644 --- a/lib/test/cryb_t_main.c +++ b/lib/test/cryb_t_main.c @@ -147,7 +147,9 @@ t_add_tests(struct t_test *t, int n) */ static jmp_buf sigjmp; static int sigs[] = { - SIGABRT, SIGBUS, SIGSEGV, SIGSYS, SIGPIPE, SIGALRM, SIGTERM, + /* it is not safe to catch SIGABRT if raised by abort(3) */ + /* SIGABRT, */ + SIGBUS, SIGSEGV, SIGSYS, SIGPIPE, SIGALRM, SIGTERM, 0 };