File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -262,6 +262,9 @@ function avm_check_circuit {
262262# tests are known-flaky and provide no additional backwards-compat coverage). Also excludes
263263# kernelless_simulation, which asserts on the exact number of nullifiers emitted and breaks whenever
264264# contracts add/remove nullifier emissions across versions (unrelated to the compat contract surface).
265+ # event_logs and avm_simulator are excluded for the same reason: they exercise contract surface that
266+ # evolves alongside the test code (TestLog gains methods, AVM assertion-string format changes with
267+ # nargo) rather than the PXE oracle surface that backwards compatibility actually guarantees.
265268function compat_test_cmds {
266269 local version=${1:? version is required}
267270 local run_test_script=" yarn-project/end-to-end/scripts/run_test.sh"
@@ -271,7 +274,7 @@ function compat_test_cmds {
271274 local tests=(
272275 src/e2e_! (prover| block_building| epochs)/* .test.ts
273276 src/e2e_p2p/reqresp/* .test.ts
274- src/e2e_! (block_building| prover_* | kernelless_simulation).test.ts
277+ src/e2e_! (block_building| prover_* | kernelless_simulation| event_logs | avm_simulator ).test.ts
275278 )
276279 for test in " ${tests[@]} " ; do
277280 local name=${test#* e2e_}
You can’t perform that action at this time.
0 commit comments