| ... | ... | @@ -74,7 +74,6 @@ pub fn main() void { |
| 74 | 74 | skip_count += 1; |
| 75 | 75 | test_node.end(); |
| 76 | 76 | progress.log("SKIP (async test)\n", .{}); |
| 77 | | if (!have_tty) std.debug.print("SKIP (async test)\n", .{}); |
| 78 | 77 | continue; |
| 79 | 78 | }, |
| 80 | 79 | } else test_fn.func(); |
| ... | ... | @@ -86,13 +85,11 @@ pub fn main() void { |
| 86 | 85 | error.SkipZigTest => { |
| 87 | 86 | skip_count += 1; |
| 88 | 87 | progress.log("SKIP\n", .{}); |
| 89 | | if (!have_tty) std.debug.print("SKIP\n", .{}); |
| 90 | 88 | test_node.end(); |
| 91 | 89 | }, |
| 92 | 90 | else => { |
| 93 | 91 | fail_count += 1; |
| 94 | 92 | progress.log("FAIL ({s})\n", .{@errorName(err)}); |
| 95 | | if (!have_tty) std.debug.print("FAIL ({s})\n", .{@errorName(err)}); |
| 96 | 93 | if (@errorReturnTrace()) |trace| { |
| 97 | 94 | std.debug.dumpStackTrace(trace.*); |
| 98 | 95 | } |