Rename fuzz target to something more meaningful
This commit is contained in:
parent
542127f723
commit
43f6b75762
2 changed files with 2 additions and 3 deletions
10
fuzz/fuzz_targets/json_raw_input.rs
Normal file
10
fuzz/fuzz_targets/json_raw_input.rs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#![no_main]
|
||||
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
extern crate fwd;
|
||||
use fwd::server::refresh::docker::JsonValue;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
let _ = JsonValue::parse(data);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue