Files
tokio/tokio-signal/tests/drop_multi_loop.rs
T
Ivan Petkov cbad83f362 signal: migrate to std::futures (#1218)
Migrate to std::futures and the futures 0.3 preview and use async/await
where possible

**Breaking change:** the IoFuture and IoStream definitions used to refer
to Box<dyn Future> and Box<dyn Stream>, but now they are defined as
Pin<...> versions which are technically breaking.

No other breaking or functional changes have been made
2019-07-03 10:40:59 -07:00

34 lines
901 B
Rust

#![cfg(unix)]
#![deny(warnings, rust_2018_idioms)]
use libc;
pub mod support;
use crate::support::*;
const TEST_SIGNAL: libc::c_int = libc::SIGUSR1;
#[test]
fn dropping_loops_does_not_cause_starvation() {
let (mut rt, signal) = {
let mut first_rt = CurrentThreadRuntime::new().expect("failed to init first runtime");
let first_signal = run_with_timeout(&mut first_rt, Signal::new(TEST_SIGNAL))
.expect("failed to register first signal");
let mut second_rt = CurrentThreadRuntime::new().expect("failed to init second runtime");
let second_signal = run_with_timeout(&mut second_rt, Signal::new(TEST_SIGNAL))
.expect("failed to register second signal");
drop(first_rt);
drop(first_signal);
(second_rt, second_signal)
};
send_signal(TEST_SIGNAL);
run_with_timeout(&mut rt, signal.into_future());
}