mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
compiler: test runner: fix tests never fails on crippled architectures
This commit is contained in:
parent
0adcfd60f4
commit
5db395f20b
1 changed files with 1 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ pub fn mainSimple() anyerror!void {
|
||||||
stderr.writeAll("... ") catch {};
|
stderr.writeAll("... ") catch {};
|
||||||
stderr.writeAll("PASS\n") catch {};
|
stderr.writeAll("PASS\n") catch {};
|
||||||
}
|
}
|
||||||
} else |err| if (enable_print) {
|
} else |err| {
|
||||||
if (enable_print) {
|
if (enable_print) {
|
||||||
stderr.writeAll(test_fn.name) catch {};
|
stderr.writeAll(test_fn.name) catch {};
|
||||||
stderr.writeAll("... ") catch {};
|
stderr.writeAll("... ") catch {};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue