aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/fuzz/fuzz_targets
Commit message (Collapse)AuthorAgeFilesLines
* move fuzz-invariants to the libraryAleksey Kladov2018-09-081-4/+1
|
* Add trivial fuzzer for parserPascal Hertleif2018-09-081-0/+12
As described in #61, fuzz testing some parts of this would be ~~fun~~ helpful. So, I started with the most trivial fuzzer I could think of: Put random stuff into File::parse and see what happens. To speed things up, I also did cp src/**/*.rs fuzz/corpus/parser/ in the `crates/libsyntax2/` directory (running the fuzzer once will generate the necessary directories).