Skip to content

Commit

Permalink
Reduce the input size for Miri tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
gendx committed Dec 6, 2024
1 parent 94dbb32 commit 9966d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ mod test {
#[cfg(not(miri))]
const INPUT_LEN: u64 = 100_000;
#[cfg(miri)]
const INPUT_LEN: u64 = 1000;
const INPUT_LEN: u64 = 200;

fn test_pipeline_sum_integers(range_strategy: RangeStrategy) {
let mut thread_pool = ThreadPoolBuilder {
Expand Down

0 comments on commit 9966d81

Please sign in to comment.