topola/crates/specctra-core/fuzz
Mikolaj Wielgus 71cdc2794d chore(licensing): add REUSE headers to hidden files, `flake.nix`, `index.html`
I ran the following command in Fish shell:

```
reuse annotate --copyright="Topola contributors" --license="MIT" **/.gitignore {.woodpecker/*,.*}.yaml .rustfmt.toml flake.nix index.html
```
2024-12-30 00:18:38 +01:00
..
fuzz_targets chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files 2024-12-29 22:47:00 +01:00
.gitignore chore(licensing): add REUSE headers to hidden files, `flake.nix`, `index.html` 2024-12-30 00:18:38 +01:00
Cargo.toml chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files 2024-12-29 22:47:00 +01:00
README.md chore(licensing): add REUSE license headers to `**.{rs,md,toml}` files 2024-12-29 22:47:00 +01:00

README.md

Fuzzer for specctra-core

This fuzzer uses cargo-fuzz. It requires nightly rust to run, and can e.g. be invoked via cargo fuzz run fuzz_target_1.

Initialize the corpus via e.g.:

mkdir -p corpus/fuzz_target_1
cp -t corpus/fuzz_target_1 $(find ../../../tests | grep \\.dsn)

before invoking the fuzzer in order to provide the fuzzing with information how input should normally look like.