mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
14 lines
206 B
Markdown
14 lines
206 B
Markdown
# Fuzzer
|
|
|
|
# Installation
|
|
|
|
```bash
|
|
cargo binstall cargo-fuzz
|
|
```
|
|
|
|
Run fuzzer for the parser, for 15 minutes.
|
|
|
|
```bash
|
|
cd crates/oxc_parser/fuzz
|
|
cargo fuzz run parser -- -only_ascii=1 -max_total_time=900
|
|
```
|