summaryrefslogtreecommitdiffstats
path: root/tokio-signal/tests/drop_multi_loop.rs
blob: 62d8da53f608f7131ed8debaa0e499f7c311a3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#![cfg(unix)]

extern crate libc;

pub mod support;
use 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);

    let signal_future = signal.into_future()
        .map_err(|(e, _)| e);

    run_with_timeout(&mut rt, signal_future)
        .expect("failed to get signal");
}