rust/tests/run-pass/vecs.rs

48 lines
996 B
Rust
Raw Normal View History

// FIXME: The normal `vec!` macro is currently broken in Miri because it hits the
// std::vec::SetLenOnDrop code and Miri doesn't call destructors yet.
macro_rules! miri_vec {
($($e:expr),*) => ({
let mut v = Vec::new();
$(v.push($e);)*
v
});
}
fn make_vec() -> Vec<u8> {
2016-03-21 03:41:07 -05:00
let mut v = Vec::with_capacity(4);
2016-03-20 21:18:09 -05:00
v.push(1);
v.push(2);
v
}
fn make_vec_macro() -> Vec<u8> {
miri_vec![1, 2]
2016-03-21 03:41:22 -05:00
}
2016-03-21 04:19:07 -05:00
fn make_vec_macro_repeat() -> Vec<u8> {
miri_vec![42, 42, 42, 42, 42]
}
fn vec_into_iter() -> u8 {
miri_vec![1, 2, 3, 4]
.into_iter()
.map(|x| x * x)
.fold(0, |x, y| x + y)
2016-03-21 04:19:07 -05:00
}
fn vec_reallocate() -> Vec<u8> {
let mut v = miri_vec![1, 2];
v.push(3);
v.push(4);
v.push(5);
v
}
2016-04-22 03:34:14 -05:00
2016-04-22 07:38:46 -05:00
fn main() {
assert_eq!(vec_reallocate().len(), 5);
assert_eq!(vec_into_iter(), 30);
assert_eq!(make_vec().capacity(), 4);
assert_eq!(make_vec_macro(), [1, 2]);
assert_eq!(make_vec_macro_repeat(), [42; 5]);
2016-04-22 07:38:46 -05:00
}