From 5079a605a8ab1b89cb745a727dfb64b3b2e8600e Mon Sep 17 00:00:00 2001 From: iximeow Date: Mon, 29 Sep 2025 01:35:33 +0000 Subject: add display/decode fuzzing, which caught a few issues --- fuzz/Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..78f2a78 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "yaxpeax-ia64-fuzz" +version = "0.0.0" +publish = false +edition = "2018" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" +yaxpeax-arch = "0.3" + +[dependencies.yaxpeax-ia64] +path = ".." + +[[bin]] +name = "display_does_not_panic" +path = "fuzz_targets/display_does_not_panic.rs" +test = false +doc = false +bench = false -- cgit v1.1