INNER CODE UNIT · Rust
corpus_data_path
matrix-org/vodozemac · src/lib.rs:345
fn corpus_data_path(fuzz_target: &str) -> std::path::PathBuf {
let manifest_dir =
std::env::var("CARGO_MANIFEST_DIR").expect("Cargo always sets the manifest dir");
let mut afl_dir = std::path::PathBuf::from(manifest_dir);
afl_dir.push("afl");
afl_dir.push(fuzz_target);
afl_dir.push("in");
afl_dir
}
#[cfg(test)]
fn run_corpus<F>(fuzz_target: &str, method: F)
where
F: FnOnce(&[u8]) + Copy,
{
let dir = corpus_data_path(fuzz_target);