2022-07-05 19:56:22 +02:00
|
|
|
//@ run-pass
|
|
|
|
//@ aux-build:sigpipe-utils.rs
|
2024-04-28 18:02:21 +02:00
|
|
|
//@ compile-flags: -Zon-broken-pipe=kill
|
2022-07-05 19:56:22 +02:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
|
|
|
#[rustc_main]
|
|
|
|
fn rustc_main() {
|
|
|
|
extern crate sigpipe_utils;
|
|
|
|
|
2024-04-28 18:02:21 +02:00
|
|
|
// `-Zon-broken-pipe=kill` is active, so SIGPIPE handler shall be
|
2022-07-05 19:56:22 +02:00
|
|
|
// SIG_DFL. Note that we have a #[rustc_main], but it should still work.
|
|
|
|
sigpipe_utils::assert_sigpipe_handler(sigpipe_utils::SignalHandler::Default);
|
|
|
|
}
|