From 05bd75275fc50ae14b2dcc684eeeb5af88168e2f Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Tue, 21 Oct 2025 17:29:07 +0300 Subject: [PATCH] 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. --- tests/integration/fuzz/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/fuzz/mod.rs b/tests/integration/fuzz/mod.rs index caffe5582..d3630cf66 100644 --- a/tests/integration/fuzz/mod.rs +++ b/tests/integration/fuzz/mod.rs @@ -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);