| ... | ... | @@ -70,7 +70,7 @@ pub fn main() void { |
| 70 | 70 | .blocking => { |
| 71 | 71 | skip_count += 1; |
| 72 | 72 | test_node.end(); |
| 73 | | progress.log("{s}... SKIP (async test)\n", .{test_fn.name}); |
| 73 | progress.log("SKIP (async test)\n", .{}); |
| 74 | 74 | if (!have_tty) std.debug.print("SKIP (async test)\n", .{}); |
| 75 | 75 | continue; |
| 76 | 76 | }, |
| ... | ... | @@ -82,13 +82,13 @@ pub fn main() void { |
| 82 | 82 | } else |err| switch (err) { |
| 83 | 83 | error.SkipZigTest => { |
| 84 | 84 | skip_count += 1; |
| 85 | | progress.log("{s}... SKIP\n", .{test_fn.name}); |
| 85 | progress.log("SKIP\n", .{}); |
| 86 | 86 | if (!have_tty) std.debug.print("SKIP\n", .{}); |
| 87 | 87 | test_node.end(); |
| 88 | 88 | }, |
| 89 | 89 | else => { |
| 90 | 90 | fail_count += 1; |
| 91 | | progress.log("{s}... FAIL ({s})\n", .{ test_fn.name, @errorName(err) }); |
| 91 | progress.log("FAIL ({s})\n", .{@errorName(err)}); |
| 92 | 92 | if (!have_tty) std.debug.print("FAIL ({s})\n", .{@errorName(err)}); |
| 93 | 93 | if (@errorReturnTrace()) |trace| { |
| 94 | 94 | std.debug.dumpStackTrace(trace.*); |