]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests/tcg/linux-test: Check that sigaction can query SIGKILL/SIGSTOP
authorIlya Leoshkevich <iii@linux.ibm.com>
Tue, 1 Jun 2021 14:56:00 +0000 (16:56 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Sun, 20 Jun 2021 14:27:13 +0000 (16:27 +0200)
Verify that querying is allowed, but making changes isn't.

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20210601145600.3131040-3-iii@linux.ibm.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
tests/tcg/multiarch/linux-test.c

index 96bbad58231849982d753afa61bf117ce1b0c53f..c8c6aeddeb36645f113af44d9aa1575982ae2f5c 100644 (file)
@@ -496,6 +496,15 @@ static void test_signal(void)
     sigemptyset(&act.sa_mask);
     act.sa_flags = 0;
     chk_error(sigaction(SIGSEGV, &act, NULL));
+
+    if (sigaction(SIGKILL, &act, NULL) == 0) {
+        error("sigaction(SIGKILL, &act, NULL) must not succeed");
+    }
+    if (sigaction(SIGSTOP, &act, NULL) == 0) {
+        error("sigaction(SIGSTOP, &act, NULL) must not succeed");
+    }
+    chk_error(sigaction(SIGKILL, NULL, &act));
+    chk_error(sigaction(SIGSTOP, NULL, &act));
 }
 
 #define SHM_SIZE 32768