Drop individual fuzz target duplicate_crash tests for file reader
[rust-lightning] / fuzz / src / peer_crypt.rs
index 8e61644644ec4a474f3e6c76184c0cd7a7f36967..e0ff02f04ccc341a219cc9a90bf308a349224591 100644 (file)
@@ -79,11 +79,3 @@ pub fn do_test(data: &[u8]) {
 pub extern "C" fn peer_crypt_run(data: *const u8, datalen: usize) {
        do_test(unsafe { std::slice::from_raw_parts(data, datalen) });
 }
-
-#[cfg(test)]
-mod tests {
-       #[test]
-       fn duplicate_crash() {
-               super::do_test(&::hex::decode("01").unwrap());
-       }
-}