diff --git a/plonky2/src/gadgets/curve_fixed_base.rs b/plonky2/src/gadgets/curve_fixed_base.rs index e248d951..f28e45d1 100644 --- a/plonky2/src/gadgets/curve_fixed_base.rs +++ b/plonky2/src/gadgets/curve_fixed_base.rs @@ -75,6 +75,7 @@ mod tests { use crate::plonk::verifier::verify; #[test] + #[ignore] fn test_fixed_base() -> Result<()> { const D: usize = 2; type C = PoseidonGoldilocksConfig; diff --git a/plonky2/src/gadgets/curve_msm.rs b/plonky2/src/gadgets/curve_msm.rs index 99aa0f36..8d019b3a 100644 --- a/plonky2/src/gadgets/curve_msm.rs +++ b/plonky2/src/gadgets/curve_msm.rs @@ -91,6 +91,7 @@ mod tests { use crate::plonk::verifier::verify; #[test] + #[ignore] fn test_curve_msm() -> Result<()> { const D: usize = 2; type C = PoseidonGoldilocksConfig;