mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-16 18:35:02 +01:00
move fuzzing code to lib
This commit is contained in:
parent
f222e0cb10
commit
6215924049
8 changed files with 102 additions and 23 deletions
6
fuzz/fuzz_targets/parser.rs
Normal file
6
fuzz/fuzz_targets/parser.rs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: String| {
|
||||
dilaria::_fuzz_parse(&data);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue