diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-18 09:19:16 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-18 09:19:16 +0100 |
| commit | 6af3219daee1457c3b9fb03fe73d2b0019d70408 (patch) | |
| tree | 266f263c52846b6b53167df370175935780eea10 /lib/header/fuzz/Cargo.toml | |
| parent | 407048d0037c8d6d26c7e3fe2384e974212f124e (diff) | |
| download | tools.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.toml | 24 |
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 |
