Skip to content

Commit da13f8f

Browse files
docs: Clean documentation.
1 parent 07e9c93 commit da13f8f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

compiler/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,10 @@ The download URL is derived from `CARGO_PKG_VERSION`, so a tag bump is the only
6969
Coverage-guided fuzzing of the lex -> parse -> VM pipeline lives in [`fuzz-afl/`](fuzz-afl/), built on [cargo-afl](https://github.com/rust-fuzz/afl.rs) (AFL++) and running on stable Rust.
7070

7171
```bash
72-
cd fuzz-afl
72+
cd compiler/fuzz-afl
7373
./seeds.sh # generate corpus + dictionary from vm.json (once)
74-
cargo afl build && cargo afl fuzz -i in -o out -x edge.dict target/debug/afl-pipeline
74+
cargo afl build # instrument on stable, no nightly
75+
cargo afl fuzz -i in -o out -x edge.dict target/debug/afl-pipeline
7576
```
7677

7778
Seeds and the dictionary are generated from `tests/cases/vm.json`, so they are gitignored. Under WSL, prefix the fuzz command with `AFL_SKIP_CPUFREQ=1 AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1`. See [Fuzzing](https://edgepython.com/implementation/fuzzing) for details.

0 commit comments

Comments
 (0)