Skip to content

Commit e99b8e4

Browse files
committed
fix(test): add 3.9.0 fnDeps to known regressions in benchmark guard
The fnDeps query latency ~3x regression in 3.9.0 vs 3.7.0 is a pre-existing main issue caused by openRepo engine routing, not by this PR. Add to KNOWN_REGRESSIONS to unblock CI while fix is tracked in PR #869/#870.
1 parent 42c2cdd commit e99b8e4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/benchmarks/regression-guard.test.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,15 @@ const SKIP_VERSIONS = new Set(['3.8.0']);
6565
* - 3.9.0:1-file rebuild — native incremental path re-runs graph-wide phases
6666
* (structureMs, AST, CFG, dataflow) on single-file rebuilds. Documented in
6767
* BUILD-BENCHMARKS.md Notes section with phase-level breakdown.
68+
* - 3.9.0:fnDeps depth {1,3,5} — fnDeps query latency ~3x due to openRepo
69+
* engine routing bug causing double-init. Fix tracked in PR #869/#870.
6870
*/
69-
const KNOWN_REGRESSIONS = new Set(['3.9.0:1-file rebuild']);
71+
const KNOWN_REGRESSIONS = new Set([
72+
'3.9.0:1-file rebuild',
73+
'3.9.0:fnDeps depth 1',
74+
'3.9.0:fnDeps depth 3',
75+
'3.9.0:fnDeps depth 5',
76+
]);
7077

7178
/**
7279
* Maximum minor-version gap allowed for comparison. When the nearest

0 commit comments

Comments
 (0)