Fuzz test decodes from u8 to u64

This commit is contained in:
Kirk Baird
2019-02-20 15:34:15 +11:00
parent 38abcc4a24
commit d5c4771f0a
5 changed files with 78 additions and 12 deletions

View File

@@ -18,9 +18,17 @@ git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
members = ["."]
[[bin]]
name = "fuzz_target_u8"
path = "fuzz_targets/fuzz_target_u8.rs"
name = "fuzz_target_u8_decode"
path = "fuzz_targets/fuzz_target_u8_decode.rs"
[[bin]]
name = "fuzz_target_u16"
path = "fuzz_targets/fuzz_target_u16.rs"
name = "fuzz_target_u16_decode"
path = "fuzz_targets/fuzz_target_u16_decode.rs"
[[bin]]
name = "fuzz_target_u32_decode"
path = "fuzz_targets/fuzz_target_u32_decode.rs"
[[bin]]
name = "fuzz_target_u64_decode"
path = "fuzz_targets/fuzz_target_u64_decode.rs"