MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / get_fuzzer_path

Function get_fuzzer_path

src/program/libfuzzer.rs:23–27  ·  view source on GitHub ↗
(fuzz_dir: &Path)

Source from the content-addressed store, hash-verified

21use super::Program;
22
23pub fn get_fuzzer_path(fuzz_dir: &Path) -> PathBuf {
24 let mut fuzzer = fuzz_dir.to_path_buf();
25 fuzzer.push("fuzzer");
26 fuzzer
27}
28
29pub fn get_cov_fuzzer_path(fuzz_dir: &Path) -> PathBuf {
30 let mut cov_fuzzer = fuzz_dir.to_path_buf();

Callers 7

compileMethod · 0.85
save_the_incidentFunction · 0.85
is_incident_reproducibleFunction · 0.85
save_ubsan_reportFunction · 0.85
sanitize_ubsan_reportFunction · 0.85

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected