Skip to content

Commit

Permalink
Don't ignore tests in plonky2_ecdsa
Browse files Browse the repository at this point in the history
  • Loading branch information
mertwole committed Feb 25, 2025
1 parent f0877ea commit fc51882
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions circuits/plonky2_ecdsa/src/gadgets/curve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,6 @@ mod tests {
}

#[test]
#[ignore]
fn test_curve_mul() -> Result<()> {
const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down Expand Up @@ -459,7 +458,6 @@ mod tests {
}

#[test]
#[ignore]
fn test_curve_random() -> Result<()> {
const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down
1 change: 0 additions & 1 deletion circuits/plonky2_ecdsa/src/gadgets/curve_fixed_base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ mod tests {
use crate::gadgets::nonnative::CircuitBuilderNonNative;

#[test]
#[ignore]
fn test_fixed_base() -> Result<()> {
const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down
1 change: 0 additions & 1 deletion circuits/plonky2_ecdsa/src/gadgets/curve_msm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ mod tests {
use crate::gadgets::nonnative::CircuitBuilderNonNative;

#[test]
#[ignore]
fn test_curve_msm() -> Result<()> {
const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down
1 change: 0 additions & 1 deletion circuits/plonky2_ecdsa/src/gadgets/curve_windowed_mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ mod tests {
}

#[test]
#[ignore]
fn test_curve_windowed_mul() -> Result<()> {
const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down
2 changes: 0 additions & 2 deletions circuits/plonky2_ecdsa/src/gadgets/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,11 @@ mod tests {
}

#[test]
#[ignore]
fn test_ecdsa_circuit_narrow() -> Result<()> {
test_ecdsa_circuit_with_config(CircuitConfig::standard_ecc_config())
}

#[test]
#[ignore]
fn test_ecdsa_circuit_wide() -> Result<()> {
test_ecdsa_circuit_with_config(CircuitConfig::wide_ecc_config())
}
Expand Down
1 change: 0 additions & 1 deletion circuits/plonky2_ecdsa/src/gadgets/glv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ mod tests {
use crate::gadgets::nonnative::CircuitBuilderNonNative;

#[test]
#[ignore]
fn test_glv_gadget() -> Result<()> {
const D: usize = 2;
type C = PoseidonGoldilocksConfig;
Expand Down

0 comments on commit fc51882

Please sign in to comment.