mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
e060274e55
There is no error expected. It's simply the "regular" test for sig_ign. So rename it.
14 lines
343 B
Rust
14 lines
343 B
Rust
//@ run-pass
|
|
//@ aux-build:sigpipe-utils.rs
|
|
|
|
#![feature(unix_sigpipe)]
|
|
|
|
#[unix_sigpipe = "sig_ign"]
|
|
fn main() {
|
|
extern crate sigpipe_utils;
|
|
|
|
// #[unix_sigpipe = "sig_ign"] is active, so the legacy behavior of ignoring
|
|
// SIGPIPE shall be in effect
|
|
sigpipe_utils::assert_sigpipe_handler(sigpipe_utils::SignalHandler::Ignore);
|
|
}
|