0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-01 04:44:13 +00:00
Files
libsql/tools/fuzz/README.md

15 lines
252 B
Markdown

# Fuzz
install cargo 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 info: <https://rust-fuzz.github.io/book/afl.html>