authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-07-20 19:16:00-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-07-20 19:16:00-07:00
log5f78e28899f99985fcc3d957b0fac08deffac81c
tree614409df7a17909c031733484dd9acbe6134f1d2
parentff02bf403b546ffc91158e976a4e9567ab02582d

test runner: disable stderr printing for riscv64

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

1 files changed, 0 insertions(+), 1 deletions(-)

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