topola/specctra/fuzz
Mikolaj Wielgus 439c005fa2 Begin rewrite. Recreate basic, incomplete project 2026-03-08 22:51:30 +01:00
..
fuzz_targets Begin rewrite. Recreate basic, incomplete project 2026-03-08 22:51:30 +01:00
.gitignore Begin rewrite. Recreate basic, incomplete project 2026-03-08 22:51:30 +01:00
Cargo.toml Begin rewrite. Recreate basic, incomplete project 2026-03-08 22:51:30 +01:00
README.md Begin rewrite. Recreate basic, incomplete project 2026-03-08 22:51:30 +01:00

README.md

Fuzzer for specctra

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.