We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9235063 commit 21d4fa4Copy full SHA for 21d4fa4
1 file changed
lib/compiler/test_runner.zig
@@ -267,7 +267,7 @@ fn mainTerminal(init: std.process.Init.Minimal) void {
267
.root_name = "Test",
268
.estimated_total_items = test_fn_list.len,
269
});
270
- const doColors = Io.File.stderr().supportsAnsiEscapeCodes();
+ const doColors = Io.File.stderr().supportsAnsiEscapeCodes(runner_threaded_io) catch false;
271
const reset = if (doColors) "\x1b[0m" else "";
272
const red = if (doColors) "\x1b[31m" else "";
273
const yellow = if (doColors) "\x1b[33m" else "";
0 commit comments