From 05a8612240922b7ea9d1a1a493d0569e04a88216 Mon Sep 17 00:00:00 2001 From: Vindaar Date: Tue, 20 Aug 2024 12:43:11 +0200 Subject: [PATCH] [nimble] add finite field FFT, Groth16 related tests to nimble file --- constantine.nimble | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/constantine.nimble b/constantine.nimble index dd05e12a..7b0ea59e 100644 --- a/constantine.nimble +++ b/constantine.nimble @@ -556,6 +556,7 @@ const testDesc: seq[tuple[path: string, useGMP: bool]] = @[ # Polynomials # ---------------------------------------------------------- ("tests/math_polynomials/t_polynomials.nim", false), + ("tests/math_polynomials/t_finite_field_fft.nim", false), # Protocols # ---------------------------------------------------------- @@ -571,6 +572,9 @@ const testDesc: seq[tuple[path: string, useGMP: bool]] = @[ # Proof systems # ---------------------------------------------------------- ("tests/proof_systems/t_r1cs_parser.nim", false), + ("tests/proof_systems/t_wtns_parser.nim", false), + ("tests/proof_systems/t_zkey_parser.nim", false), + ("tests/proof_systems/t_groth16_prover.nim", false), ("tests/interactive_proofs/t_multilinear_extensions.nim", false), ]