Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

evalFuzzTest

Run.evalFuzzTest
fn evalFuzzTest(
    run: *Run,
    run_index: Configuration.Step.Index,
    progress_node: std.Progress.Node,
    spawn_options: process.SpawnOptions,
    fuzz_context: FuzzContext,
) !void

File

Code

fn evalFuzzTest(
    run: *Run,
    run_index: Configuration.Step.Index,
    progress_node: std.Progress.Node,
    spawn_options: process.SpawnOptions,
    fuzz_context: FuzzContext,
) !void {
    var f: FuzzTestRunner = try .init(run, run_index, fuzz_context, progress_node, spawn_options);
    defer f.deinit();
    try f.startInstances();
    try f.listen();
}