Skip to content

Commit

Permalink
recursive layout tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Okm165 committed Mar 22, 2024
1 parent 2c733d4 commit e18164e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/fri/tests.cairo
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// === RECURSIVE BEGIN ===
mod test_fri_commit;
mod test_fri_config;
mod test_fri_formula;
mod test_fri_verify;
// === RECURSIVE END ===
mod test_fri_formula;
mod test_last_layer;
mod test_next_layer;
2 changes: 2 additions & 0 deletions src/oods.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ fn eval_oods_boundary_poly_at_points(
evaluations
}

// === RECURSIVE BEGIN ===
#[cfg(test)]
mod tests {
use cairo_verifier::oods::verify_oods;
Expand All @@ -158,3 +159,4 @@ mod tests {
);
}
}
// === RECURSIVE END ===
2 changes: 2 additions & 0 deletions src/queries/tests.cairo
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// === RECURSIVE BEGIN ===
mod test_generate_queries;
// === RECURSIVE END ===
mod test_queries_to_points;
mod test_usort;
4 changes: 1 addition & 3 deletions src/queries/tests/test_queries_to_points.cairo
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
use cairo_verifier::{
queries::queries::queries_to_points, domains::StarkDomains, tests::stone_proof_fibonacci
};
use cairo_verifier::{queries::queries::queries_to_points, domains::StarkDomains};

#[test]
#[available_gas(9999999999)]
Expand Down
4 changes: 4 additions & 0 deletions src/stark/tests.cairo
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// === RECURSIVE BEGIN ===
mod test_stark_commit;
mod test_stark_proof_verify;
mod test_stark_verify;
// === RECURSIVE END ===


4 changes: 4 additions & 0 deletions src/table_commitment/tests.cairo
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
mod test_table_commitment_commit;
// === RECURSIVE BEGIN ===
mod test_table_commitment_decommit;
// === RECURSIVE END ===


0 comments on commit e18164e

Please sign in to comment.