diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-10-07 15:14:34 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-12 07:41:30 +0100 |
| commit | abd9a7679e5da78a51ed5eb488ae081a2bcb2b6c (patch) | |
| tree | 45c4064fec80df52359cc5e4a7c73596fb6021f0 /lib/xixanta/fuzz/Cargo.toml | |
| parent | 9e148a4b216f349eb277aa029397139ba9d4994e (diff) | |
| download | tools.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.toml | 24 |
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 |
