expand list of gencode-generated files (#370)

This commit is contained in:
Conrado Gouvea 2023-06-01 15:53:01 -03:00 committed by GitHub
parent e9cd8ecc09
commit c773edf452
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 8 deletions

View File

@ -2,18 +2,14 @@ use rand::thread_rng;
use crate::*;
// TODO: make batching work for larger scalars
// #[test]
#[allow(unused)]
#[test]
fn check_batch_verify() {
let rng = thread_rng();
frost_core::tests::batch::batch_verify::<Ed448Shake256, _>(rng);
}
// TODO: make batching work for larger scalars
// #[test]
#[allow(unused)]
#[test]
fn check_bad_batch_verify() {
let rng = thread_rng();

View File

@ -1,11 +1,10 @@
use crate::*;
use frost_core::tests::proptests::{tweak_strategy, SignatureCase};
use proptest::prelude::*;
use rand_chacha::ChaChaRng;
use rand_core::SeedableRng;
use crate::*;
proptest! {
#[test]

View File

@ -282,6 +282,10 @@ fn main() -> ExitCode {
"dkg.md",
"src/keys/dkg.rs",
"src/keys/repairable.rs",
"src/tests/batch.rs",
"src/tests/coefficient_commitment.rs",
"src/tests/proptests.rs",
"src/tests/vss_commitment.rs",
] {
replaced |= copy_and_replace(
format!("{original_folder}/{filename}").as_str(),