mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 02:40:45 +00:00
15 lines
332 B
Rust
15 lines
332 B
Rust
#![allow(dead_code)]
|
|
|
|
use std::env;
|
|
|
|
pub mod eq;
|
|
pub mod parse;
|
|
|
|
/// Read the `ABORT_AFTER_FAILURE` environment variable, and parse it.
|
|
pub fn abort_after() -> usize {
|
|
match env::var("ABORT_AFTER_FAILURE") {
|
|
Ok(s) => s.parse().expect("failed to parse ABORT_AFTER_FAILURE"),
|
|
Err(_) => usize::max_value(),
|
|
}
|
|
}
|