| author | |
| committer | |
| log | 5c6f5e6cf2d6fdce2083e1f946a1f5ee407dbdf9 |
| tree | c7e265847a14cad75828ff58461fcbdaa39fc323 |
| parent | 624fa8523a2c4158ddc9fce231181a9e8583a633 |
because it causes unwanted concurrent accesses to pc tracking1 files changed, 1 insertions(+), 1 deletions(-)
lib/compiler/test_runner.zig+1-1| ... | ... | @@ -166,7 +166,7 @@ fn mainTerminal() void { |
| 166 | 166 | var skip_count: usize = 0; |
| 167 | 167 | var fail_count: usize = 0; |
| 168 | 168 | var fuzz_count: usize = 0; |
| 169 | const root_node = std.Progress.start(.{ | |
| 169 | const root_node = if (builtin.fuzz) std.Progress.Node.none else std.Progress.start(.{ | |
| 170 | 170 | .root_name = "Test", |
| 171 | 171 | .estimated_total_items = test_fn_list.len, |
| 172 | 172 | }); |