Rename fuzz target to something more meaningful

This commit is contained in:
John Doty 2024-08-12 11:44:02 -07:00
parent 542127f723
commit 43f6b75762
2 changed files with 2 additions and 3 deletions

View file

@ -14,8 +14,8 @@ libfuzzer-sys = "0.4"
path = ".." path = ".."
[[bin]] [[bin]]
name = "fuzz_target_1" name = "json_raw_input"
path = "fuzz_targets/fuzz_target_1.rs" path = "fuzz_targets/json_raw_input.rs"
test = false test = false
doc = false doc = false
bench = false bench = false

View file

@ -6,6 +6,5 @@ extern crate fwd;
use fwd::server::refresh::docker::JsonValue; use fwd::server::refresh::docker::JsonValue;
fuzz_target!(|data: &[u8]| { fuzz_target!(|data: &[u8]| {
// fuzzed code goes here
let _ = JsonValue::parse(data); let _ = JsonValue::parse(data);
}); });