summaryrefslogtreecommitdiff
path: root/test/sys/test_signal.rs
blob: ab99ab191fa2de8754841e93d638a63f898ead24 (plain)
1
2
3
4
5
6
7
use nix::unistd::*;
use nix::sys::signal::*;

#[test]
fn test_kill_none() {
    kill(getpid(), None).expect("Should be able to send signal to myself.");
}