This commit is contained in:
Mitchell Hashimoto
2026-02-28 20:56:57 -08:00
parent 23f6b1af65
commit 346248251e
2 changed files with 4 additions and 4 deletions

View File

@@ -120,8 +120,8 @@ deduplication from `afl-cmin`.
### Corpus directories
| Directory | Contents |
|------------------------|--------------------------------------------------|
| `corpus/initial/` | Hand-written seed inputs for `afl-fuzz -i` |
| Directory | Contents |
| ------------------------ | ----------------------------------------------- |
| `corpus/initial/` | Hand-written seed inputs for `afl-fuzz -i` |
| `corpus/vt-parser-cmin/` | Output of `afl-cmin` (edge-deduplicated corpus) |
| `corpus/vt-parser-min/` | Output of `afl-tmin` (individually minimized) |

View File

@@ -40,7 +40,7 @@ pub fn build(b: *std.Build) void {
};
// Build a C entrypoint with afl-cc that links against the generated
// static Zig library. afl-cc is expecte to be on the PATH.
// static Zig library. afl-cc is expected to be on the PATH.
const exe = afl.addInstrumentedExe(b, lib);
// Runner to simplify running afl-fuzz