Skip to content

Commit b501adc

Browse files
committed
std.Build.Fuzz: fix progress node hierarchy
1 parent 7366b4b commit b501adc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/std/Build/Fuzz.zig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ pub fn start(
3737
}
3838

3939
{
40-
const rebuild_node = prog_node.start("Fuzzing", count);
41-
defer rebuild_node.end();
40+
const fuzz_node = prog_node.start("Fuzzing", count);
41+
defer fuzz_node.end();
4242
var wait_group: std.Thread.WaitGroup = .{};
4343
defer wait_group.wait();
4444

4545
for (all_steps) |step| {
4646
const run = step.cast(Step.Run) orelse continue;
4747
for (run.fuzz_tests.items) |unit_test_index| {
4848
assert(run.rebuilt_executable != null);
49-
thread_pool.spawnWg(&wait_group, fuzzWorkerRun, .{ run, unit_test_index, ttyconf, prog_node });
49+
thread_pool.spawnWg(&wait_group, fuzzWorkerRun, .{ run, unit_test_index, ttyconf, fuzz_node });
5050
}
5151
}
5252
}

0 commit comments

Comments
 (0)