From 1ee4fe83d74978f44eb61b23dda9c258f4af82b1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 1 Mar 2019 19:46:28 -0500 Subject: decide not to try autogenerating tests, it is too error prone --- signal.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'signal.c') diff --git a/signal.c b/signal.c index 13aa074..050534a 100644 --- a/signal.c +++ b/signal.c @@ -1,7 +1,16 @@ #include #include "test.h" -#include "signal.d" +static sig_atomic_t sig_atomic; + +static int signals[] = { + SIGABRT, + SIGFPE, + SIGILL, + SIGINT, + SIGSEGV, + SIGTERM, +}; void test_signal_h(void) { -- cgit v1.2.1