test(ci): drop e2e_kernelless_simulation from backwards-compat e2e#23005
Merged
benesjan merged 1 commit intomerge-train/fairiesfrom May 6, 2026
Merged
test(ci): drop e2e_kernelless_simulation from backwards-compat e2e#23005benesjan merged 1 commit intomerge-train/fairiesfrom
benesjan merged 1 commit intomerge-train/fairiesfrom
Conversation
benesjan
approved these changes
May 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Forward port of #22999 (which targets
backport-to-v4-next-staging) ontomerge-train/fairiesso the v4 and v5 versions ofcompat_test_cmdsstay aligned.Excludes
src/e2e_kernelless_simulation.test.tsfrom thecompat_test_cmdsset inyarn-project/end-to-end/bootstrap.sh, so it no longer runs under the backwards-compatibility (ci-compat-e2e) job.Why
e2e_kernelless_simulationasserts on the exact number of nullifiers emitted by the test contracts. PR #22939 changed the contract artifacts and now emits a different nullifier count, which causes the test to fail when the new client runs against older contract artifacts in compat mode (failing v4 nightly: https://github.com/AztecProtocol/aztec-packages/actions/runs/25419116073/job/74558302821#step:4:38). The mismatch is not a real backwards-compat regression — the test is asserting on internal accounting that legitimately changes between versions.Per @benesjan and @mverzilli, the right call is to drop this test from the compat matrix rather than maintain compat-aware nullifier-count assertions; reducing the compat surface to tests that actually exercise the contract API is the longer-term direction. Forward-porting here keeps the v5 compat matrix in lockstep with v4.
Implementation
Identical to #22999: add
kernelless_simulationto the bash extglob exclusion list for the top-levele2e_*.test.tspattern.Comment block above the function updated with the same reasoning. Verified with
shopt -s extglobthat the new pattern excludes onlysrc/e2e_kernelless_simulation.test.tsand still includes every other top-levelsrc/e2e_*.test.ts.ClaudeBox log: https://claudebox.work/s/ed6536a05f7d2b77?run=4