Skip to content

Commit 5a1a557

Browse files
committed
fix: BB_DISABLE_ASSERTS in HonkRecursionConstraintTestWithoutPredicate.GenerateVKFromConstraints (debug build)
1 parent cf1a239 commit 5a1a557

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

barretenberg/cpp/src/barretenberg/dsl/acir_format/honk_recursion_constraint.test.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,14 @@ TYPED_TEST_SUITE(HonkRecursionConstraintTestWithoutPredicate, HonkRecursionTypes
455455

456456
TYPED_TEST(HonkRecursionConstraintTestWithoutPredicate, GenerateVKFromConstraints)
457457
{
458+
#ifndef NDEBUG
459+
// In debug mode, generating the recursion constraints triggers inner proof construction whose
460+
// ZK sumcheck path hits a BB_ASSERT_DEBUG that fires in CI but not in release. Mirror the
461+
// WithPredicate variant's debug-mode workaround (PR #21542) so the nightly debug build is
462+
// unblocked.
463+
BB_DISABLE_ASSERTS();
464+
#endif
465+
458466
if constexpr (TypeParam::IsRootRollup) {
459467
TestFixture::template test_vk_independence<UltraZKFlavor>();
460468
} else {

0 commit comments

Comments
 (0)