summaryrefslogtreecommitdiff
path: root/signal.c
blob: c1096455222794216e261359750371f13538f616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <signal.h>
#include "test.h"

void test_signal_h(void)
{
	sig_atomic_t sig_atomic;

	int signals[] = {
		SIGABRT,
		SIGFPE,
		SIGILL,
		SIGINT,
		SIGSEGV,
		SIGTERM,
	};

	testing_header("signal.h");

	test_distinct(signals);

	testing_end();
}