<sys/socket.h>: turn off MSG_NOSIGNAL
[minix3.git] / tests / rump / rumpkern / t_signals.c
blobe113af29a1fa7944b943dcb1359ecf073ebd6bd5
1 /* $NetBSD: t_signals.c,v 1.2 2011/02/20 19:45:45 pooka Exp $ */
3 /*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include <sys/types.h>
31 #include <sys/wait.h>
33 #include <atf-c.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <signal.h>
37 #include <unistd.h>
39 #include <rump/rump.h>
41 #include "../kernspace/kernspace.h"
42 #include "../../h_macros.h"
44 ATF_TC(sigraise);
45 ATF_TC_HEAD(sigraise, tc)
48 atf_tc_set_md_var(tc, "descr", "RUMP_SIGMODEL_RAISE");
51 ATF_TC(sigignore);
52 ATF_TC_HEAD(sigignore, tc)
55 atf_tc_set_md_var(tc, "descr", "RUMP_SIGMODEL_IGNORE");
58 ATF_TC(sigpanic);
59 ATF_TC_HEAD(sigpanic, tc)
62 atf_tc_set_md_var(tc, "descr", "RUMP_SIGMODEL_PANIC");
65 static volatile sig_atomic_t sigcnt;
66 static void
67 thehand(int sig)
70 sigcnt++;
73 ATF_TC_BODY(sigraise, tc)
76 signal(SIGUSR2, thehand);
77 rump_boot_setsigmodel(RUMP_SIGMODEL_RAISE);
79 rump_init();
80 rump_schedule();
81 rumptest_localsig(SIGUSR2);
82 rump_unschedule();
83 ATF_REQUIRE_EQ(sigcnt, 1);
86 ATF_TC_BODY(sigignore, tc)
89 rump_boot_setsigmodel(RUMP_SIGMODEL_IGNORE);
91 rump_init();
92 rump_schedule();
93 rumptest_localsig(SIGKILL);
94 rump_unschedule();
97 ATF_TC_BODY(sigpanic, tc)
99 int status;
101 rump_boot_setsigmodel(RUMP_SIGMODEL_PANIC);
103 switch (fork()) {
104 case 0:
105 rump_init();
106 rump_schedule();
107 rumptest_localsig(SIGCONT);
108 /* NOTREACHED */
109 exit(1);
110 default:
111 wait(&status);
112 ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT);
113 break;
114 case -1:
115 atf_tc_fail_errno("fork");
119 ATF_TP_ADD_TCS(tp)
122 ATF_TP_ADD_TC(tp, sigraise);
123 ATF_TP_ADD_TC(tp, sigignore);
124 ATF_TP_ADD_TC(tp, sigpanic);
126 return atf_no_error();