zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5f78e28899f99985fcc3d957b0fac08deffac81c (tree)
parent ff02bf403b546ffc91158e976a4e9567ab02582d
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat, 20 Jul 2024 19:16:00 -0700

test runner: disable stderr printing for riscv64

Make it a little easier for contributors to see CI failures in the logs.

Diffstat:
Mlib/compiler/test_runner.zig | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/lib/compiler/test_runner.zig b/lib/compiler/test_runner.zig @@ -221,7 +221,6 @@ pub fn log( pub fn mainSimple() anyerror!void { // is the backend capable of printing to stderr? const enable_print = switch (builtin.zig_backend) { - .stage2_riscv64 => true, else => false, }; // is the backend capable of using std.fmt.format to print a summary at the end?