Skip to content

Commit eed2056

Browse files
committed
fix: skip AvmRecursionInnerCircuitTests in debug builds
AvmRecursionInnerCircuitTests.Tampering timed out at 600s in the nightly debug build. Skip it like HonkRecursionConstraintTest and ChonkRecursionConstraintTest — the same TwoLayerAvmRecursiveVerifier code paths are already exercised by AvmRecursiveTests (TwoLayerAvmRecursion, TwoLayerAvmRecursionFailsWithWrongPIs) and BoomerangTwoLayerAvmRecursive VerifierTests which all run in debug builds. No unique debug-only C++ assertions exist in the tampering code path; the only BB_ASSERT in the verifier (circuit size bounds check) is hit on the happy path too.
1 parent 5e23bc0 commit eed2056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

barretenberg/cpp/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ function test_cmds_native {
247247
while read -r test; do
248248
# Skip heavy recursion tests in debug builds — they take 400-600s and the same
249249
# code paths are already exercised (with assertions) by faster tests in the suite.
250-
if [[ "$native_preset" == *debug* ]] && [[ "$test" =~ ^(HonkRecursionConstraintTest|ChonkRecursionConstraintTest) ]]; then
250+
if [[ "$native_preset" == *debug* ]] && [[ "$test" =~ ^(HonkRecursionConstraintTest|ChonkRecursionConstraintTest|AvmRecursionInnerCircuitTests) ]]; then
251251
continue
252252
fi
253253
local prefix=$hash

0 commit comments

Comments
 (0)