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.

expectStdErrEqual

Adds a check for exact stderr match. Does not add any other checks.

Run.expectStdErrEqual
pub fn expectStdErrEqual(run: *Run, bytes: []const u8) void

File

Code

pub fn expectStdErrEqual(run: *Run, bytes: []const u8) void {
    const graph = run.step.owner.graph;
    run.addCheck(.{ .expect_stderr_exact = graph.dupeString(bytes) });
}