From abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 7 Oct 2024 15:14:34 +0200 Subject: ci: Add fuzzy testing to the parser MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/fuzz/Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/xixanta/fuzz/Cargo.toml (limited to 'lib/xixanta/fuzz/Cargo.toml') diff --git a/lib/xixanta/fuzz/Cargo.toml b/lib/xixanta/fuzz/Cargo.toml new file mode 100644 index 0000000..3b3498d --- /dev/null +++ b/lib/xixanta/fuzz/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "xixanta-fuzz" +version = "0.0.0" +publish = false +edition = "2021" + +[workspace] +members = [] + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" + +[dependencies.xixanta] +path = ".." + +[[bin]] +name = "fuzz_target_1" +path = "fuzz_targets/fuzz_target_1.rs" +test = false +doc = false +bench = false -- cgit v1.2.3