d14f15862d
The only difference between the files is the presence/absence of #![feature(unix_sigpipe)] attribute. Avoid duplication by using revisions instead.
13 lines
342 B
Rust
13 lines
342 B
Rust
//@ revisions: with_feature without_feature
|
|
//@ run-pass
|
|
//@ aux-build:sigpipe-utils.rs
|
|
|
|
#![cfg_attr(with_feature, feature(unix_sigpipe))]
|
|
|
|
fn main() {
|
|
extern crate sigpipe_utils;
|
|
|
|
// SIGPIPE shall be ignored since #[unix_sigpipe = "..."] is not used
|
|
sigpipe_utils::assert_sigpipe_handler(sigpipe_utils::SignalHandler::Ignore);
|
|
}
|