From 5db395f20bab9766028d98ac51c4f1ea286d2f92 Mon Sep 17 00:00:00 2001 From: Bingwu Zhang Date: Sat, 14 Jun 2025 14:38:32 +0800 Subject: [PATCH] compiler: test runner: fix tests never fails on crippled architectures --- lib/compiler/test_runner.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/test_runner.zig b/lib/compiler/test_runner.zig index adbee7d07d..1ce2fbff3e 100644 --- a/lib/compiler/test_runner.zig +++ b/lib/compiler/test_runner.zig @@ -309,7 +309,7 @@ pub fn mainSimple() anyerror!void { stderr.writeAll("... ") catch {}; stderr.writeAll("PASS\n") catch {}; } - } else |err| if (enable_print) { + } else |err| { if (enable_print) { stderr.writeAll(test_fn.name) catch {}; stderr.writeAll("... ") catch {};