summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
blob: 4f864807752c2f40c4612cb3530604628a3db810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
// aux-build:sigpipe-utils.rs

#![feature(unix_sigpipe)]

#[unix_sigpipe = "inherit"]
fn main() {
    extern crate sigpipe_utils;

    // #[unix_sigpipe = "inherit"] is active, so SIGPIPE shall NOT be ignored,
    // instead the default handler shall be installed. (We assume that the
    // process that runs these tests have the default handler.)
    sigpipe_utils::assert_sigpipe_handler(sigpipe_utils::SignalHandler::Default);
}