Skip to content

Commit

Permalink
chore(avm): Conditionally enable avm recursion unit tests based on an…
Browse files Browse the repository at this point in the history
… env variable (#10873)
  • Loading branch information
jeanmon authored Dec 19, 2024
1 parent 8820bd5 commit 7a9506c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ class AvmRecursiveTests : public ::testing::Test {

TEST_F(AvmRecursiveTests, recursion)
{
if (std::getenv("AVM_ENABLE_FULL_PROVING") == nullptr) {
GTEST_SKIP();
}

InnerBuilder circuit_builder = generate_avm_circuit();
InnerComposer composer = InnerComposer();
InnerProver prover = composer.create_prover(circuit_builder);
Expand Down

0 comments on commit 7a9506c

Please sign in to comment.