diff --git a/src/interrupt.rs b/src/interrupt.rs index a8d9ac46..f2a94e83 100644 --- a/src/interrupt.rs +++ b/src/interrupt.rs @@ -18,6 +18,7 @@ pub fn install_handler() { } /// Return an error if the program was interrupted and should exit. +#[mutants::skip] // With this mutated too many of the tests will hang. pub fn check_interrupted() -> Result<()> { if INTERRUPTED.load(Ordering::SeqCst) { error!("interrupted");