Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: reenable integration tests in ACVM #4050

Merged
merged 1 commit into from
Jan 16, 2024
Merged
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
3 changes: 1 addition & 2 deletions acvm-repo/acvm/tests/solver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ use acvm_blackbox_solver::StubbedBlackBoxSolver;
// Reenable these test cases once we move the brillig implementation of inversion down into the acvm stdlib.

#[test]
#[ignore]
fn inversion_brillig_oracle_equivalence() {
// Opcodes below describe the following:
// fn main(x : Field, y : pub Field) {
Expand Down Expand Up @@ -126,7 +125,6 @@ fn inversion_brillig_oracle_equivalence() {
}

#[test]
#[ignore]
fn double_inversion_brillig_oracle() {
// Opcodes below describe the following:
// fn main(x : Field, y : pub Field) {
Expand Down Expand Up @@ -453,6 +451,7 @@ fn brillig_oracle_predicate() {
// ACVM should be able to be finalized in `Solved` state.
acvm.finalize();
}

#[test]
fn unsatisfied_opcode_resolved() {
let a = Witness(0);
Expand Down
Loading