Skip to content

Commit 92f668c

Browse files
Add usize::MAX arg tests for Vec
1 parent b7dcabe commit 92f668c

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

library/alloc/tests/vec.rs

+41
Original file line numberDiff line numberDiff line change
@@ -2643,3 +2643,44 @@ fn test_vec_from_array_ref() {
26432643
fn test_vec_from_array_mut_ref() {
26442644
assert_eq!(Vec::from(&mut [1, 2, 3]), vec![1, 2, 3]);
26452645
}
2646+
2647+
/// This assortment of tests, in combination with miri, verifies we handle UB on fishy arguments
2648+
/// in the stdlib. Draining and extending the allocation are fairly well-tested earlier, but
2649+
/// `vec.insert(usize::MAX, val)` once slipped by!
2650+
///
2651+
/// All code that manipulates the collection types should be tested with "trivially wrong" args.
2652+
#[test]
2653+
fn max_dont_panic() {
2654+
let mut v = vec![0];
2655+
let _ = v.get(usize::MAX);
2656+
v.shrink_to(usize::MAX);
2657+
v.truncate(usize::MAX);
2658+
}
2659+
2660+
#[test]
2661+
#[should_panic]
2662+
fn max_insert() {
2663+
let mut v = vec![0];
2664+
v.insert(usize::MAX, 1);
2665+
}
2666+
2667+
#[test]
2668+
#[should_panic]
2669+
fn max_remove() {
2670+
let mut v = vec![0];
2671+
v.remove(usize::MAX);
2672+
}
2673+
2674+
#[test]
2675+
#[should_panic]
2676+
fn max_splice() {
2677+
let mut v = vec![0];
2678+
v.splice(usize::MAX.., core::iter::once(1));
2679+
}
2680+
2681+
#[test]
2682+
#[should_panic]
2683+
fn max_swap_remove() {
2684+
let mut v = vec![0];
2685+
v.swap_remove(usize::MAX);
2686+
}

0 commit comments

Comments
 (0)