Skip to content

Commit

Permalink
feat(avm): add to avm_proving_test
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyasRidhuan committed Jun 17, 2024
1 parent 6cb5188 commit 5bbe792
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions yarn-project/bb-prover/src/avm_proving.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,20 @@ describe('AVM WitGen, proof generation and verification', () => {
TIMEOUT,
);

/************************************************************************
* Avm Embedded Curve functions
************************************************************************/
describe('AVM Embedded Curve functions', () => {
const avmEmbeddedCurveFunctions: string[] = ['elliptic_curve_add_and_double', 'variable_base_msm'];
it.each(avmEmbeddedCurveFunctions)(
'Should prove %s',
async name => {
await proveAndVerifyAvmTestContract(name);
},
TIMEOUT,
);
});

/************************************************************************
* AvmContext functions
************************************************************************/
Expand Down

0 comments on commit 5bbe792

Please sign in to comment.