mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
16 lines
238 B
Markdown
16 lines
238 B
Markdown
# Fuzzer
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
cargo binstall cargo-fuzz
|
|
```
|
|
|
|
## Run
|
|
|
|
Run fuzzer for the parser, for 15 minutes.
|
|
|
|
```bash
|
|
rustup default nightly
|
|
cargo +nightly fuzz run --sanitizer none parser -- -only_ascii=1 -max_total_time=900
|
|
```
|