51 lines
919 B
C
51 lines
919 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) International Business Machines Corp., 2001
|
|
*/
|
|
|
|
/*\
|
|
* [Description]
|
|
*
|
|
* Set the signal handler to our own function.
|
|
*/
|
|
|
|
#include "tst_test.h"
|
|
|
|
static int siglist[] = { SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGIOT,
|
|
SIGBUS, SIGFPE, SIGUSR1, SIGSEGV, SIGUSR2, SIGPIPE, SIGALRM,
|
|
SIGTERM,
|
|
#ifdef SIGSTKFLT
|
|
SIGSTKFLT,
|
|
#endif
|
|
SIGCHLD, SIGCONT, SIGTSTP, SIGTTIN,
|
|
SIGTTOU, SIGURG, SIGXCPU, SIGXFSZ, SIGVTALRM, SIGPROF,
|
|
SIGWINCH, SIGIO, SIGPWR, SIGSYS,
|
|
#ifdef SIGUNUSED
|
|
SIGUNUSED
|
|
#endif
|
|
};
|
|
|
|
static volatile int sig_pass;
|
|
|
|
static void sighandler(int sig)
|
|
{
|
|
sig_pass = sig;
|
|
}
|
|
|
|
static void do_test(unsigned int n)
|
|
{
|
|
pid_t pid;
|
|
|
|
SAFE_SIGNAL(siglist[n], sighandler);
|
|
|
|
pid = getpid();
|
|
|
|
SAFE_KILL(pid, siglist[n]);
|
|
TST_EXP_EQ_SSZ(siglist[n], sig_pass);
|
|
}
|
|
|
|
static struct tst_test test = {
|
|
.tcnt = ARRAY_SIZE(siglist),
|
|
.test = do_test,
|
|
};
|