Skip to content

Commit

Permalink
Rollup merge of #69765 - RalfJung:miri-test, r=LukasKalbertodt
Browse files Browse the repository at this point in the history
reduce test size for Miri

The larger sizes take quite a while, and there is probably little point in repeating this quite so often.
  • Loading branch information
Centril committed Mar 7, 2020
2 parents 1a1f948 + 2770f30 commit e6d4996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/liballoc/tests/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1733,9 +1733,9 @@ fn panic_safe() {
let moduli = &[5, 20, 50];

#[cfg(miri)]
let lens = 1..13;
let lens = 1..10;
#[cfg(miri)]
let moduli = &[10];
let moduli = &[5];

for len in lens {
for &modulus in moduli {
Expand Down

0 comments on commit e6d4996

Please sign in to comment.