From 9b1f983633d0feb52937f5fc37f0f22c841c8c7a Mon Sep 17 00:00:00 2001 From: aarnav Date: Thu, 30 Jan 2025 11:53:25 +0100 Subject: [PATCH] try fix CI --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 80fc442..7fb0434 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,6 @@ pub use honggfuzz::fuzz as honggfuzz_fuzz; // This is our inner harness handler function for the runner. // We open the input file and feed the data to the harness closure. #[doc(hidden)] -#[cfg(not(feature = "coverage"))] pub fn read_file_and_fuzz(mut closure: F, file: String) where F: FnMut(&[u8]), @@ -133,7 +132,6 @@ macro_rules! read_args_and_fuzz { /// # } /// ``` #[macro_export] -#[cfg(not(feature = "coverage"))] macro_rules! inner_fuzz { (|$buf:ident| $body:block) => { $crate::read_args_and_fuzz!(|$buf| $body);