From 82c5c350e569d77e2b05321cda553f388d948aa4 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 18 Dec 2024 12:03:46 +0100 Subject: Rename xixanta's fuzz targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit They were named with increasing numbers due to the fact that that's the default behaviour from cargo fuzz's command. So, just rename them to proper human-readable names. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs (limited to 'lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs') diff --git a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs deleted file mode 100644 index 442dbbf..0000000 --- a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs +++ /dev/null @@ -1,8 +0,0 @@ -#![no_main] - -use libfuzzer_sys::fuzz_target; - -fuzz_target!(|data: &[u8]| { - let mut parser = xixanta::parser::Parser::default(); - let _ = parser.parse(data); -}); -- cgit v1.2.3