generate corpus to fuzz on with meson

This commit is contained in:
John Turner
2025-11-16 21:57:40 +00:00
parent 424bd9d072
commit b360132b99
5 changed files with 88 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ pub unsafe extern "C" fn LLVMFuzzerTestOneInput(input: *const u8, len: usize) ->
let mut proc = Command::new("atom.py")
.stdin(Stdio::piped())
.spawn()
.unwrap();
.expect("failed to start atom.py");
proc.stdin
.as_mut()