15 lines
445 B
Rust
15 lines
445 B
Rust
// 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);
|
|
}
|