summaryrefslogtreecommitdiff
path: root/source/kit_test
diff options
context:
space:
mode:
Diffstat (limited to 'source/kit_test')
-rw-r--r--source/kit_test/test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/kit_test/test.c b/source/kit_test/test.c
index 5e10021..e5e2862 100644
--- a/source/kit_test/test.c
+++ b/source/kit_test/test.c
@@ -51,10 +51,11 @@ void kit_test_register(char const *name, char const *file,
static jmp_buf kit_test_restore_execution;
-static int const signums[] = { SIGILL, SIGABRT, SIGFPE, SIGSEGV,
- SIGTERM };
+static int const signums[] = { SIGINT, SIGILL, SIGABRT,
+ SIGFPE, SIGSEGV, SIGTERM };
static char const *const signames[] = {
+ [SIGINT] = "Interactive attention signal",
[SIGILL] = "Illegal instruction",
[SIGABRT] = "Abnormal termination",
[SIGFPE] = "Erroneous arithmetic operation",