EXIT_PASS

Constant EXIT_PASS 

Source
pub const EXIT_PASS: i32 = 0;
Expand description

Process exit code for a Pass verdict (and for the Skip path, which degenerates to Pass because the test never ran).

Defined as a pub const so external tooling (CI gates, dashboard aggregators, nextest wrappers) can reference the exit-code triad by name instead of duplicating the integer literals. The trio EXIT_PASS / EXIT_FAIL / EXIT_INCONCLUSIVE cover every verdict produced by the Fail > Inconclusive > Pass > Skip lattice when projected to a process exit code.