Skip to content

Commit

Permalink
feat(avm): add ECC ops to avm_proving_test (#7058)
Browse files Browse the repository at this point in the history
Please read [contributing guidelines](CONTRIBUTING.md) and remove this
line.
  • Loading branch information
IlyasRidhuan authored Jun 18, 2024
1 parent 109624f commit 7f62a90
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 7f62a90

Please sign in to comment.