summaryrefslogtreecommitdiffstats
path: root/tokio/tests/signal_ctrl_c.rs
blob: ea4efaa2158c8b4e380a246b88185999277dbf97 (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
#![cfg(unix)]
#![warn(rust_2018_idioms)]

mod support {
    pub mod signal;
}
use support::signal::send_signal;

use tokio::prelude::*;
use tokio::signal;
use tokio::sync::oneshot;

#[tokio::test]
async fn ctrl_c() {
    let ctrl_c = signal::ctrl_c().expect("failed to init ctrl_c");

    let (fire, wait) = oneshot::channel();

    // NB: simulate a signal coming in by exercising our signal handler
    // to avoid complications with sending SIGINT to the test process
    tokio::spawn(async {
        wait.await.expect("wait failed");
        send_signal(libc::SIGINT);
    });

    let _ = fire.send(());
    let _ = ctrl_c.into_future().await;
}