Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate state trait/impl for generative fuzzers #2304

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Jun 12, 2024

  1. Separate state trait/impl for generative fuzzers

    Generative fuzzers do not need a corpus. To this end, this commit splits
    out `GenState` (trait) and `StdGenState` (struct) from `State` (trait)
    and `StdState` (struct). The idea is that we will support some notion of
    a generative fuzzer (perhaps `GenFuzzer`) that will not rely on having a
    "current corpus ID". Down the line, we may also want to move input
    loading/generation/scheduling into a method on `GenState` that returns
    a `State`, see AFLplusplus#2200.
    langston-barrett committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    695f100 View commit details
    Browse the repository at this point in the history