- Add iter() method to ToUnicodeMap for accessing CMAP structure - Extend test_cmap_unmapped_glyph_skip to show CMAP contents - Extend test_cmap_multiple_mappings_with_unmapped_check to show mappings - Add debug output for inspection of source bytes and target chars - Add verification note at notes/bf-okdnk.md This enables inspection of CMAP output structure to verify unmapped glyphs are properly handled before implementing actual filtering logic. Closes bf-okdnk
26 lines
718 B
Markdown
26 lines
718 B
Markdown
# bf-3322r: Verify cargo-fuzz installation
|
|
|
|
## Task
|
|
Verify that the cargo-fuzz toolchain is properly installed and available.
|
|
|
|
## Verification
|
|
|
|
### Acceptance Criteria Status
|
|
|
|
| Criterion | Status | Details |
|
|
|-----------|--------|---------|
|
|
| `cargo fuzz --version` succeeds | ✅ PASS | Command executed successfully |
|
|
| No 'command not found' errors | ✅ PASS | No errors encountered |
|
|
| Version ≥ 0.11.0 | ✅ PASS | **cargo-fuzz 0.13.1** installed |
|
|
|
|
### Command Output
|
|
```bash
|
|
$ cargo fuzz --version
|
|
cargo-fuzz 0.13.1
|
|
```
|
|
|
|
## Conclusion
|
|
The cargo-fuzz toolchain is properly installed and ready for use in the pdftract fuzz testing infrastructure (Phase 5, Tier 5 property and fuzz tests).
|
|
|
|
## Date
|
|
2026-07-06
|