mirror of https://codeberg.org/topola/topola.git
I ran the following command in Fish shell:
```
reuse annotate --copyright="Topola contributors" --license="MIT" **/.gitignore {.woodpecker/*,.*}.yaml .rustfmt.toml flake.nix index.html
```
|
||
|---|---|---|
| .. | ||
| fuzz_targets | ||
| .gitignore | ||
| Cargo.toml | ||
| README.md | ||
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.