mirror of
https://github.com/privacy-scaling-explorations/snark-verifier.git
synced 2026-01-10 06:47:54 -05:00
fix: correct testing naming convention
This commit is contained in:
@@ -119,14 +119,14 @@ test!(
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 64GB memory to run"],
|
||||
zk_two_snark,
|
||||
zk_accumulation_two_snark,
|
||||
21,
|
||||
halo2_kzg_config!(true, 1, (0..4 * LIMBS).map(|idx| (0, idx)).collect()),
|
||||
Accumulation::two_snark(true)
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 128GB memory to run"],
|
||||
zk_two_snark_with_accumulator,
|
||||
zk_accumulation_two_snark_with_accumulator,
|
||||
22,
|
||||
halo2_kzg_config!(true, 1, (0..4 * LIMBS).map(|idx| (0, idx)).collect()),
|
||||
Accumulation::two_snark_with_accumulator(true)
|
||||
@@ -145,14 +145,14 @@ test!(
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 64GB memory to run"],
|
||||
two_snark,
|
||||
accumulation_two_snark,
|
||||
21,
|
||||
halo2_kzg_config!(false, 1, (0..4 * LIMBS).map(|idx| (0, idx)).collect()),
|
||||
Accumulation::two_snark(false)
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 128GB memory to run"],
|
||||
two_snark_with_accumulator,
|
||||
accumulation_two_snark_with_accumulator,
|
||||
22,
|
||||
halo2_kzg_config!(false, 1, (0..4 * LIMBS).map(|idx| (0, idx)).collect()),
|
||||
Accumulation::two_snark_with_accumulator(false)
|
||||
|
||||
@@ -353,28 +353,28 @@ macro_rules! test {
|
||||
|
||||
test!(
|
||||
#[ignore = "cause it requires 64GB memory to run"],
|
||||
zk_two_snark,
|
||||
zk_accumulation_two_snark,
|
||||
21,
|
||||
halo2_kzg_config!(true, 1, Accumulation::accumulator_indices()),
|
||||
Accumulation::two_snark(true)
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 128GB memory to run"],
|
||||
zk_two_snark_with_accumulator,
|
||||
zk_accumulation_two_snark_with_accumulator,
|
||||
22,
|
||||
halo2_kzg_config!(true, 1, Accumulation::accumulator_indices()),
|
||||
Accumulation::two_snark_with_accumulator(true)
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 64GB memory to run"],
|
||||
two_snark,
|
||||
accumulation_two_snark,
|
||||
21,
|
||||
halo2_kzg_config!(false, 1, Accumulation::accumulator_indices()),
|
||||
Accumulation::two_snark(false)
|
||||
);
|
||||
test!(
|
||||
#[ignore = "cause it requires 128GB memory to run"],
|
||||
two_snark_with_accumulator,
|
||||
accumulation_two_snark_with_accumulator,
|
||||
22,
|
||||
halo2_kzg_config!(false, 1, Accumulation::accumulator_indices()),
|
||||
Accumulation::two_snark_with_accumulator(false)
|
||||
|
||||
Reference in New Issue
Block a user