harness/lib.rs
1//! Shared helpers for Antithesis test commands.
2
3use std::time::Duration;
4
5pub mod config;
6#[cfg(unix)]
7pub mod driver;
8pub mod payload;
9pub mod rand;
10
11/// How long a context may take to appear on both lanes before it counts as a
12/// divergence.
13pub const ACCEPTABLE_FLUSH_DELAY: Duration = Duration::from_secs(30);