Merge pull request #386 from TheBlueMatt/2019-10-useless-lints
[rust-lightning] / fuzz / fuzz_targets / msg_targets / msg_shutdown_target.rs
index 7eabf80955eadeef8b5b5bf1725e3a95ca22a30f..34d4d2003f6b6e14912df53d3355aa5e36d03160 100644 (file)
@@ -1,28 +1,24 @@
+// 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;
+use utils::VecWriter;
 
 #[inline]
 pub fn do_test(data: &[u8]) {
-       reset_rng_state();
-       let mut read_pos = 0;
-       loop {
-               test_msg!(msgs::Shutdown, data, read_pos);
-       }
+       test_msg!(msgs::Shutdown, 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 +33,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());
        }
 }