Drop individual fuzz target duplicate_crash tests for file reader
[rust-lightning] / fuzz / src / msg_targets / msg_decoded_onion_error_packet.rs
index e49d22b3a1a12bf35fc6a88f6b63d7b7b5a8757b..d6e5a829d1f9bed2dd552241e0d6547f75fa7fc9 100644 (file)
@@ -14,11 +14,3 @@ pub fn do_test(data: &[u8]) {
 pub extern "C" fn msg_decoded_onion_error_packet_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("00").unwrap());
-       }
-}