public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] signal: Avoid system signal disposition to interfere with tests
@ 2024-03-12 17:36 Adhemerval Zanella
  0 siblings, 0 replies; only message in thread
From: Adhemerval Zanella @ 2024-03-12 17:36 UTC (permalink / raw)
  To: libc-alpha

Both tst-sigset2 and tst-signal1 expectes that SIGINT disposition
is set to SIG_DFL.
---
 signal/tst-sigset2.c          | 4 ++++
 sysdeps/pthread/tst-signal1.c | 3 +++
 2 files changed, 7 insertions(+)

diff --git a/signal/tst-sigset2.c b/signal/tst-sigset2.c
index 4eef653f95..c1d125e4cb 100644
--- a/signal/tst-sigset2.c
+++ b/signal/tst-sigset2.c
@@ -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();
diff --git a/sysdeps/pthread/tst-signal1.c b/sysdeps/pthread/tst-signal1.c
index 1c550ef8eb..ca145eef3d 100644
--- a/sysdeps/pthread/tst-signal1.c
+++ b/sysdeps/pthread/tst-signal1.c
@@ -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);
-- 
2.34.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-03-12 17:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-12 17:36 [PATCH] signal: Avoid system signal disposition to interfere with tests Adhemerval Zanella

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).