X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=fuzz%2Ffuzz_targets%2Fmsg_targets%2Fmsg_funding_created_target.rs;h=b9c67ae33504b27e7820cb0b17095d73200d2264;hb=63cb37d34622c9150fc262867865465f122a4d0b;hp=ae66f5d35a9ae6c806f91932dc363d5aaafe84eb;hpb=eccd527a55307b94a5c5c5df7e3ef056440e79b8;p=rust-lightning diff --git a/fuzz/fuzz_targets/msg_targets/msg_funding_created_target.rs b/fuzz/fuzz_targets/msg_targets/msg_funding_created_target.rs index ae66f5d3..b9c67ae3 100644 --- a/fuzz/fuzz_targets/msg_targets/msg_funding_created_target.rs +++ b/fuzz/fuzz_targets/msg_targets/msg_funding_created_target.rs @@ -1,28 +1,25 @@ +// This file is auto-generated by gen_target.sh based on msg_target_template.txt +// To modify it, modify msg_target_template.txt and run gen_target.sh instead. + extern crate lightning; use lightning::ln::msgs; use lightning::util::reset_rng_state; -use lightning::ln::msgs::{MsgEncodable, MsgDecodable}; - mod utils; -use utils::slice_to_be16; #[inline] pub fn do_test(data: &[u8]) { reset_rng_state(); - let mut read_pos = 0; - loop { - test_msg!(msgs::FundingCreated, data, read_pos); - } + test_msg!(msgs::FundingCreated, data); } #[cfg(feature = "afl")] -extern crate afl; +#[macro_use] extern crate afl; #[cfg(feature = "afl")] fn main() { - afl::read_stdio_bytes(|data| { - do_test(&data); + fuzz!(|data| { + do_test(data); }); } @@ -37,13 +34,11 @@ fn main() { } } +extern crate hex; #[cfg(test)] mod tests { - use utils::extend_vec_from_hex; #[test] fn duplicate_crash() { - let mut a = Vec::new(); - extend_vec_from_hex("00", &mut a); - super::do_test(&a); + super::do_test(&::hex::decode("00").unwrap()); } }