Drop individual fuzz target duplicate_crash tests for file reader
[rust-lightning] / fuzz / src / chanmon_deser.rs
index 5dde4a2ea43057ca734f814d27fd2ca4a812cc3c..5d15f718fa7b19a9314f36e3d6bf2c80d9ff0908 100644 (file)
@@ -40,11 +40,3 @@ pub fn do_test(data: &[u8]) {
 pub extern "C" fn chanmon_deser_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());
-       }
-}