From ff06de4c897e0b51c4d1f044746d43397500be69 Mon Sep 17 00:00:00 2001 From: Bingwu Zhang Date: Sat, 14 Jun 2025 18:05:57 +0800 Subject: [PATCH] riscv64: enable test summary printing --- lib/compiler/test_runner.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/compiler/test_runner.zig b/lib/compiler/test_runner.zig index 1ce2fbff3e..f9adc002ad 100644 --- a/lib/compiler/test_runner.zig +++ b/lib/compiler/test_runner.zig @@ -292,6 +292,7 @@ pub fn mainSimple() anyerror!void { }; // is the backend capable of using std.fmt.format to print a summary at the end? const print_summary = switch (builtin.zig_backend) { + .stage2_riscv64 => true, else => false, };