Skip to content

Commit af7f2a6

Browse files
committed
compiler: test runner: fix tests never fails on crippled architectures
1 parent 294acf2 commit af7f2a6

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
@@ -310,7 +310,7 @@ pub fn mainSimple() anyerror!void {
310310
stderr.writeAll("... ") catch {};
311311
stderr.writeAll("PASS\n") catch {};
312312
}
313-
} else |err| if (enable_print) {
313+
} else |err| {
314314
if (enable_print) {
315315
stderr.writeAll(test_fn.name) catch {};
316316
stderr.writeAll("... ") catch {};

0 commit comments

Comments
 (0)