Files
Brad King e15ea144fb Merge topic 'presets-fix-name-string'
af277fe06f presets: Avoid string conversion on bad "name" type

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !12487
2026-09-07 09:21:22 -04:00
..

Fuzzing Seed Corpora
====================

This directory contains seed corpus files for the CMake fuzz targets.
Each subdirectory corresponds to a specific fuzzer.

Regenerating Binary Corpus Files
--------------------------------

Some corpus files are binary and include generation scripts for reproducibility:

- ``elf/generate.py`` - Generates minimal ELF headers for cmELFFuzzer

To regenerate::

    cd elf && python3 generate.py

Adding New Corpus Files
-----------------------

When adding new corpus files:

1. Keep files minimal - smaller seeds lead to faster fuzzing
2. For binary formats, include a generation script
3. Cover different code paths and edge cases
4. Avoid duplicating coverage between files