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