tests: Reduce the # of iterations in safekeeper::test_random_schedules (#9182)

To make it faster. On my laptop, it takes about 30 before this commit.
In the arm64 debug variant in CI, it takes about 120 s. Reduce it by
factor of 4.
This commit is contained in:
Heikki Linnakangas
2024-09-27 19:25:35 +03:00
committed by GitHub
parent 5c5871111a
commit cf6a776fcf

View File

@@ -9,7 +9,7 @@ use crate::walproposer_sim::{
pub mod walproposer_sim; pub mod walproposer_sim;
// Generates 2000 random seeds and runs a schedule for each of them. // Generates 500 random seeds and runs a schedule for each of them.
// If you see this test fail, please report the last seed to the // If you see this test fail, please report the last seed to the
// @safekeeper team. // @safekeeper team.
#[test] #[test]
@@ -17,7 +17,7 @@ fn test_random_schedules() -> anyhow::Result<()> {
let clock = init_logger(); let clock = init_logger();
let mut config = TestConfig::new(Some(clock)); let mut config = TestConfig::new(Some(clock));
for _ in 0..2000 { for _ in 0..500 {
let seed: u64 = rand::thread_rng().gen(); let seed: u64 = rand::thread_rng().gen();
config.network = generate_network_opts(seed); config.network = generate_network_opts(seed);