mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-31 05:44:25 +01:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user