Skip to content

Commit 5db395f

Browse files
committed
compiler: test runner: fix tests never fails on crippled architectures
1 parent 0adcfd6 commit 5db395f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/compiler/test_runner.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ pub fn mainSimple() anyerror!void {
309309
stderr.writeAll("... ") catch {};
310310
stderr.writeAll("PASS\n") catch {};
311311
}
312-
} else |err| if (enable_print) {
312+
} else |err| {
313313
if (enable_print) {
314314
stderr.writeAll(test_fn.name) catch {};
315315
stderr.writeAll("... ") catch {};

0 commit comments

Comments
 (0)