#![allow(dead_code)]usestd::env;pubmodeq;pubmodparse;/// Read the `ABORT_AFTER_FAILURE` environment variable, and parse it.
pubfnabort_after()->usize{matchenv::var("ABORT_AFTER_FAILURE"){Ok(s)=> s.parse().expect("failed to parse ABORT_AFTER_FAILURE"),Err(_)=>usize::max_value(),}}