jemallocator/tests/smoke.rs

43 lines
1001 B
Rust
Raw Normal View History

2016-01-21 01:14:01 +00:00
extern crate jemallocator;
2017-07-07 18:07:16 +00:00
use jemallocator::Jemalloc;
use std::alloc::{GlobalAlloc, Layout};
2017-07-07 18:07:16 +00:00
#[global_allocator]
static A: Jemalloc = Jemalloc;
2016-01-21 01:14:01 +00:00
#[test]
fn smoke() {
let mut a = Vec::new();
a.push(3);
}
/// https://github.com/rust-lang/rust/issues/45955
#[test]
fn overaligned() {
let size = 8;
let align = 16; // greater than size
let iterations = 100;
unsafe {
2018-10-30 19:34:36 +00:00
let pointers: Vec<_> = (0..iterations)
.map(|_| {
let ptr = Jemalloc.alloc(Layout::from_size_align(size, align).unwrap());
assert!(!ptr.is_null());
ptr
})
.collect();
for &ptr in &pointers {
2018-10-30 19:34:36 +00:00
assert_eq!(
(ptr as usize) % align,
0,
"Got a pointer less aligned than requested"
)
}
// Clean up
for &ptr in &pointers {
Jemalloc.dealloc(ptr, Layout::from_size_align(size, align).unwrap())
}
}
}