diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-11-16 21:57:40 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-11-16 21:57:40 +0000 |
| commit | b360132b9992bf2f242a6ce0927464d6d04ffa02 (patch) | |
| tree | b40ac72e6ffbb69bcf7942a8c6369d9bc20fa7fc /fuzz/fuzz.rs | |
| parent | 424bd9d0720e3752c6ff252c6eb0a3425109b765 (diff) | |
| download | gentoo-utils-b360132b9992bf2f242a6ce0927464d6d04ffa02.tar.gz | |
generate corpus to fuzz on with meson
Diffstat (limited to 'fuzz/fuzz.rs')
| -rw-r--r-- | fuzz/fuzz.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz.rs b/fuzz/fuzz.rs index 69804e8..72f751b 100644 --- a/fuzz/fuzz.rs +++ b/fuzz/fuzz.rs @@ -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() |
