detect_test.zig

    1. $ zig test detect_test.zig
    2. 1/1 test "builtin.is_test"... OK
    3. All 1 tests passed.

    Zig has lazy top level declaration analysis, which means that if a function is not called, or otherwise used, it is not analyzed. This means that there may be an undiscovered compile error in a function because it is never called.

    1. $ zig test unused_fn.zig
    2. All 1 tests passed.

    Note that, while in Debug and modes, unreachable emits a call to , in ReleaseFast and modes, it is really undefined behavior. The implementation of is as simple as:

    This means that when testing in ReleaseFast or ReleaseSmall mode, assert is not sufficient to check the result of a computation:

    1. const std = @import("std");
    2. const assert = std.debug.assert;
    3. assert(false);
    4. }

    Better practice for checking the output when testing is to use :

    test.zig

    1. $ zig test test.zig -O ReleaseFast
    2. 1/1 test "expect in release fast mode"... test failure
    3. docgen_tmp/zig-cache/o/cb6de32279940f36da16caa4f64d8c67/test

    zig test has a few command line parameters which affect the compilation. See zig --help for a full list. The most interesting one is . This makes the test build only include tests whose name contains the supplied filter text. Again, thanks to lazy analysis, this can allow you to narrow a build to only a few functions in isolation.