peepmatic: Define fuzz targets for various parts of peepmatic
This commit is contained in:
8
fuzz/fuzz_targets/peepmatic_parser.rs
Normal file
8
fuzz/fuzz_targets/peepmatic_parser.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
#![no_main]
|
||||
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
use peepmatic_fuzzing::parser::parse;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
parse(data);
|
||||
});
|
||||
Reference in New Issue
Block a user