We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9842c60 commit bd9c73dCopy full SHA for bd9c73d
src/interrupt.rs
@@ -18,6 +18,7 @@ pub fn install_handler() {
18
}
19
20
/// Return an error if the program was interrupted and should exit.
21
+#[mutants::skip] // With this mutated too many of the tests will hang.
22
pub fn check_interrupted() -> Result<()> {
23
if INTERRUPTED.load(Ordering::SeqCst) {
24
error!("interrupted");
0 commit comments