aboutsummaryrefslogtreecommitdiff
path: root/test/src/Cases.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2023-05-24 16:03:44 +0300
committerGitHub <noreply@github.com>2023-05-24 16:03:44 +0300
commit7cb2e653a20698b4b8050705bcb72afeea9df63b (patch)
treee8d6161a0258448cd6fcb6bad9f81fc31ad56c8a /test/src/Cases.zig
parentb2a514b3d2d2d880a41a26e798fb3c9ee014c229 (diff)
parent93d9c9bf319e78045c70d1e6260b15e3319c82b9 (diff)
downloadzig-7cb2e653a20698b4b8050705bcb72afeea9df63b.tar.gz
zig-7cb2e653a20698b4b8050705bcb72afeea9df63b.zip
Merge pull request #15806 from linusg/std-io-tty
std: Move TTY from std.debug to std.io and add missing colors
Diffstat (limited to 'test/src/Cases.zig')
-rw-r--r--test/src/Cases.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/Cases.zig b/test/src/Cases.zig
index 63dd2fd3da..08568d0dd6 100644
--- a/test/src/Cases.zig
+++ b/test/src/Cases.zig
@@ -1354,7 +1354,7 @@ fn runOneCase(
defer all_errors.deinit(allocator);
if (all_errors.errorMessageCount() > 0) {
all_errors.renderToStdErr(.{
- .ttyconf = std.debug.detectTTYConfig(std.io.getStdErr()),
+ .ttyconf = std.io.tty.detectConfig(std.io.getStdErr()),
});
// TODO print generated C code
return error.UnexpectedCompileErrors;