Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,14 @@ TYPED_TEST_SUITE(HonkRecursionConstraintTestWithoutPredicate, HonkRecursionTypes

TYPED_TEST(HonkRecursionConstraintTestWithoutPredicate, GenerateVKFromConstraints)
{
#ifndef NDEBUG
// In debug mode, generating the recursion constraints triggers inner proof construction whose
// ZK sumcheck path hits a BB_ASSERT_DEBUG that fires in CI but not in release. Mirror the
// WithPredicate variant's debug-mode workaround (PR #21542) so the nightly debug build is
// unblocked.
BB_DISABLE_ASSERTS();
#endif

if constexpr (TypeParam::IsRootRollup) {
TestFixture::template test_vk_independence<UltraZKFlavor>();
} else {
Expand Down
Loading