tests/integration: Reduce collation fuzz test iterations

The collation fuzz test case takes up to 4 minutes to run, making it the
slowest of all the test cases. Let's reduce iteration count a bit to
make this more CI friendly.
This commit is contained in:
Pekka Enberg
2025-10-21 17:29:07 +03:00
parent 6139dde081
commit 05bd75275f

View File

@@ -608,7 +608,7 @@ mod tests {
let (mut rng, seed) = rng_from_time_or_env();
println!("collation_fuzz seed: {seed}");
const ITERS: usize = 3000;
const ITERS: usize = 1000;
for iter in 0..ITERS {
if iter % (ITERS / 100).max(1) == 0 {
println!("collation_fuzz: iteration {}/{}", iter + 1, ITERS);