mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 18:11:19 +00:00
24 lines
485 B
Rust
24 lines
485 B
Rust
#![warn(rust_2018_idioms)]
|
|
#![cfg(feature = "full")]
|
|
#![cfg(unix)]
|
|
#![cfg(not(miri))] // No `sigaction` on Miri.
|
|
|
|
mod support {
|
|
pub mod signal;
|
|
}
|
|
use support::signal::send_signal;
|
|
|
|
use tokio::signal::unix::{signal, SignalKind};
|
|
|
|
#[tokio::test]
|
|
async fn twice() {
|
|
let kind = SignalKind::user_defined1();
|
|
let mut sig = signal(kind).expect("failed to get signal");
|
|
|
|
for _ in 0..2 {
|
|
send_signal(libc::SIGUSR1);
|
|
|
|
assert!(sig.recv().await.is_some());
|
|
}
|
|
}
|