1use rustix::process::*; 2 3#[test] 4fn test_parent_process_death_signal() { 5 dbg!(parent_process_death_signal().unwrap()); 6} 7 8#[test] 9fn test_trace_status() { 10 dbg!(trace_status(None).unwrap()); 11} 12