From 1a3268ba46aeb36e04cdf60adc0d56bb737a2cb7 Mon Sep 17 00:00:00 2001 From: Joaquin Terrasa Date: Mon, 31 Aug 2026 22:34:33 +0200 Subject: [PATCH] build: wire approval-review-benchmark tests into the test step The test-approval-review-benchmark step existed but was never depended on by the aggregate test step, so zig build test never ran the approval review benchmark qualification tests. The sibling ui-activity benchmark tests were already wired in; this adds the missing dependency so both benchmark test units run as part of the standard gate. --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index fd3d01481..7111f8770 100644 --- a/build.zig +++ b/build.zig @@ -277,6 +277,7 @@ pub fn build(b: *std.Build) void { test_approval_review_bench_step.dependOn( &run_approval_review_bench_tests.step, ); + test_step.dependOn(&run_approval_review_bench_tests.step); const pgso_ir_step = b.step( "pgso-ir",