//! These tests hang, even in a clean tree.
//!//! This lets us test we impose a reasonable timeout on clean tree tests.
usestd::thread::sleep;usestd::time::Duration;pubfninfinite_loop(){// Not really infinite, so that orphaned processes don't hang around forever.
// They shouldn't normally happen, but they might when cargo-mutants is itself
// being mutation tested, or has a bug, etc.
for i in0..600{println!("{}", i);sleep(Duration::from_secs(1));}}modtest{#[test]fninfinite_loop(){super::infinite_loop()}}