prettier should ignore various fuzz files
parent
33fbd73247
commit
1c65611446
|
|
@ -19,3 +19,7 @@ website/.next
|
||||||
|
|
||||||
# shaders
|
# shaders
|
||||||
*.frag
|
*.frag
|
||||||
|
|
||||||
|
# fuzz corpus files
|
||||||
|
test/fuzz-libghostty/corpus/
|
||||||
|
test/fuzz-libghostty/afl-out/
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,10 @@ libghostty-vt (Zig module).
|
||||||
|
|
||||||
## Fuzz Targets
|
## Fuzz Targets
|
||||||
|
|
||||||
| Target | Binary | Description |
|
| Target | Binary | Description |
|
||||||
| ---------- | -------------- | ------------------------------------------------------- |
|
| -------- | ------------- | ------------------------------------------------------- |
|
||||||
| `parser` | `fuzz-parser` | VT parser only (`Parser.next` byte-at-a-time) |
|
| `parser` | `fuzz-parser` | VT parser only (`Parser.next` byte-at-a-time) |
|
||||||
| `stream` | `fuzz-stream` | Full terminal stream (`nextSlice` + `next` via handler) |
|
| `stream` | `fuzz-stream` | Full terminal stream (`nextSlice` + `next` via handler) |
|
||||||
|
|
||||||
The stream target creates a small `Terminal` and exercises the readonly
|
The stream target creates a small `Terminal` and exercises the readonly
|
||||||
`Stream` handler, covering printing, CSI dispatch, OSC, DCS, SGR, cursor
|
`Stream` handler, covering printing, CSI dispatch, OSC, DCS, SGR, cursor
|
||||||
|
|
@ -135,8 +135,8 @@ rename the output files to replace colons with underscores before committing:
|
||||||
|
|
||||||
### Corpus directories
|
### Corpus directories
|
||||||
|
|
||||||
| Directory | Contents |
|
| Directory | Contents |
|
||||||
| -------------------------- | ----------------------------------------------- |
|
| ------------------------ | ----------------------------------------------- |
|
||||||
| `corpus/parser-initial/` | Hand-written seed inputs for vt-parser |
|
| `corpus/parser-initial/` | Hand-written seed inputs for vt-parser |
|
||||||
| `corpus/parser-cmin/` | Output of `afl-cmin` (edge-deduplicated corpus) |
|
| `corpus/parser-cmin/` | Output of `afl-cmin` (edge-deduplicated corpus) |
|
||||||
| `corpus/stream-initial/` | Hand-written seed inputs for vt-stream |
|
| `corpus/stream-initial/` | Hand-written seed inputs for vt-stream |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue