aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/fuzz/Cargo.toml
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-10-07 15:14:34 +0200
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-12 07:41:30 +0100
commitabd9a7679e5da78a51ed5eb488ae081a2bcb2b6c (patch)
tree45c4064fec80df52359cc5e4a7c73596fb6021f0 /lib/xixanta/fuzz/Cargo.toml
parent9e148a4b216f349eb277aa029397139ba9d4994e (diff)
downloadtools.nes-abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c.tar.gz
tools.nes-abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c.zip
ci: Add fuzzy testing to the parser
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/fuzz/Cargo.toml')
-rw-r--r--lib/xixanta/fuzz/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
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