fix: correct testing naming convention

This commit is contained in:
han0110
2022-07-10 23:08:48 +08:00
parent 6bf26cc973
commit 64f358fb0e
2 changed files with 8 additions and 8 deletions

View File

@@ -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)

View File

@@ -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)