aboutsummaryrefslogtreecommitdiff
path: root/lib/header/fuzz/Cargo.toml
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-18 09:19:16 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-18 09:19:16 +0100
commit6af3219daee1457c3b9fb03fe73d2b0019d70408 (patch)
tree266f263c52846b6b53167df370175935780eea10 /lib/header/fuzz/Cargo.toml
parent407048d0037c8d6d26c7e3fe2384e974212f124e (diff)
downloadtools.nes-6af3219daee1457c3b9fb03fe73d2b0019d70408.tar.gz
tools.nes-6af3219daee1457c3b9fb03fe73d2b0019d70408.zip
header: Add fuzzy testing
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/header/fuzz/Cargo.toml')
-rw-r--r--lib/header/fuzz/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/header/fuzz/Cargo.toml b/lib/header/fuzz/Cargo.toml
new file mode 100644
index 0000000..9ea48be
--- /dev/null
+++ b/lib/header/fuzz/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "header-fuzz"
+version = "0.0.0"
+publish = false
+edition = "2021"
+
+[workspace]
+members = []
+
+[package.metadata]
+cargo-fuzz = true
+
+[dependencies]
+libfuzzer-sys = "0.4"
+
+[dependencies.header]
+path = ".."
+
+[[bin]]
+name = "fuzz_target_header"
+path = "fuzz_targets/fuzz_target_header.rs"
+test = false
+doc = false
+bench = false