From 372d903e98953817c818211243fbc6f7e9294884 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 23 Dec 2023 13:20:53 -0800 Subject: add fuzz target for no panicking plz (it found panics) --- fuzz/Cargo.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 fuzz/Cargo.toml (limited to 'fuzz/Cargo.toml') diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 0000000..cf84c01 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "yaxpeax-rx-fuzz" +version = "0.0.0" +authors = ["Automatically generated"] +publish = false +edition = "2018" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" +yaxpeax-rx = { path = ".." } +yaxpeax-arch = "0.2.7" + +# Prevent this from interfering with workspaces +[workspace] +members = ["."] + +[[bin]] +name = "fuzz_target_1" +path = "fuzz_targets/fuzz_target_1.rs" +test = false +doc = false + +[[bin]] +name = "no-panic" +path = "fuzz_targets/no-panic.rs" +test = false +doc = false -- cgit v1.1