commit 8f7febfa6f5900e64bee1636c2bbc13bd5a52bd6 (tree)
parent e0e91d13cd43f265295e6dd9f98d49b098bd302c
Author: Arthur Teixeira <arthurcarvalhot@yahoo.com.br>
Date: Mon, 22 Jun 2026 11:06:09 -0300
Step Runner: set color environment variables before executing test step
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/lib/compiler/Maker/Step/Run.zig b/lib/compiler/Maker/Step/Run.zig
@@ -2306,6 +2306,7 @@ fn spawnChildAndCollect(
};
if (conf_run.flags.stdio == .zig_test) {
+ try setColorEnvironmentVariables(&conf_run, environ_map, graph.stderr_mode.?);
const started: Io.Clock.Timestamp = .now(io, .awake);
const result = evalZigTest(run, run_index, maker, progress_node, spawn_options, fuzz_context) catch |err| switch (err) {
error.Canceled => |e| return e,