mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-22 04:36:15 +00:00
45daf74055
* add gitignore * add fuzz * add gitignore
16 lines
252 B
Markdown
16 lines
252 B
Markdown
# Fuzz
|
|
|
|
install carfo afl:
|
|
`cargo install cargo-afl`
|
|
|
|
build the fuzz crate:
|
|
`cargo afl build`
|
|
|
|
run the tests:
|
|
'''
|
|
cargo afl fuzz -i dicts -x dicts/sql.dict -o out target/debug/fuzz parser
|
|
'''
|
|
|
|
|
|
for more infos: https://rust-fuzz.github.io/book/afl.html
|