mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
signal: Avoid system signal disposition to interfere with tests
Both tst-sigset2 and tst-signal1 expectes that SIGINT disposition is set to SIG_DFL.
This commit is contained in:
parent
96d1b9ac23
commit
2e53eb9234
2 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,8 @@
|
|||
#include <sys/wait.h>
|
||||
#include <libc-diag.h>
|
||||
|
||||
#include <support/xsignal.h>
|
||||
|
||||
/* The sigset function is deprecated. */
|
||||
DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wdeprecated-declarations");
|
||||
|
||||
|
@ -148,6 +150,8 @@ returnTest3 (void)
|
|||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
xsignal (TEST_SIG, SIG_DFL);
|
||||
|
||||
pid_t childPid;
|
||||
|
||||
childPid = fork();
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <sys/wait.h>
|
||||
|
||||
#include <support/xunistd.h>
|
||||
#include <support/xsignal.h>
|
||||
|
||||
static sigset_t ss;
|
||||
static pthread_barrier_t *b;
|
||||
|
@ -93,6 +94,8 @@ receiver (void)
|
|||
static int
|
||||
do_test (void)
|
||||
{
|
||||
xsignal (SIGINT, SIG_DFL);
|
||||
|
||||
char tmp[] = "/tmp/tst-signal1-XXXXXX";
|
||||
|
||||
int fd = mkstemp (tmp);
|
||||
|
|
Loading…
Add table
Reference in a new issue