roc/crates/compiler/parse/fuzz
2022-12-13 06:04:43 -05:00
..
fuzz_targets moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
.gitignore moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
Cargo.lock Give parser fuzzing some TLC 2022-12-11 08:39:52 -08:00
Cargo.toml moved all crates into seperate folder + related path fixes 2022-07-01 17:37:43 +02:00
dict.txt Parse package module header 2022-12-04 06:26:44 -05:00
README.md Add missing h1s 2022-09-09 01:12:32 -06:00

fuzz

To setup fuzzing you will need to install cargo-fuzz and run with rust nightly:

$ cargo install cargo-fuzz
$ cargo +nightly fuzz run -j<cores> <target> -- -dict=dict.txt

The different targets can be found by running cargo fuzz list.

When a bug is found, it will be reported with commands to run it again and look for a minimized version. If you are going to file a bug, please minimize the input before filing the bug.