2018-09-21 22:34:42 -04:00
|
|
|
extern crate qadapt;
|
|
|
|
|
|
|
|
use qadapt::QADAPT;
|
|
|
|
use std::alloc::alloc;
|
|
|
|
use std::alloc::Layout;
|
|
|
|
use std::sync::atomic::Ordering;
|
|
|
|
|
|
|
|
#[global_allocator]
|
|
|
|
static A: QADAPT = QADAPT::INIT;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn alloc_nonnull() {
|
|
|
|
unsafe {
|
|
|
|
assert!(!alloc(Layout::new::<u32>()).is_null())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Empty;
|
|
|
|
|
|
|
|
struct NonEmpty {
|
|
|
|
_x: i32,
|
|
|
|
_y: i32
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn allocation_flag() {
|
|
|
|
A.clear_allocations();
|
2018-09-22 17:26:52 -04:00
|
|
|
assert!(!A.has_allocated());
|
2018-09-21 22:34:42 -04:00
|
|
|
|
|
|
|
let _x = 24;
|
2018-09-22 17:26:52 -04:00
|
|
|
assert!(!A.has_allocated());
|
2018-09-21 22:34:42 -04:00
|
|
|
|
|
|
|
let _x = Empty {};
|
2018-09-22 17:26:52 -04:00
|
|
|
assert!(!A.has_allocated());
|
2018-09-21 22:34:42 -04:00
|
|
|
|
|
|
|
let _x = NonEmpty {
|
|
|
|
_x: 42,
|
|
|
|
_y: 84
|
|
|
|
};
|
2018-09-22 17:26:52 -04:00
|
|
|
assert!(!A.has_allocated());
|
2018-09-21 22:34:42 -04:00
|
|
|
|
|
|
|
let _x = Box::new(42);
|
2018-09-22 17:26:52 -04:00
|
|
|
assert!(A.has_allocated());
|
2018-09-22 19:57:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(never)]
|
|
|
|
fn no_op() {}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_alloc_during_noop() {
|
|
|
|
A.clear_allocations();
|
|
|
|
assert!(!A.has_allocated());
|
|
|
|
|
|
|
|
no_op();
|
|
|
|
assert!(!A.has_allocated());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(never)]
|
|
|
|
fn allocates() {
|
|
|
|
let _x = Box::new(42);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn alloc_during_func_call() {
|
|
|
|
A.clear_allocations();
|
|
|
|
assert!(!A.has_allocated());
|
|
|
|
|
|
|
|
allocates();
|
|
|
|
assert!(A.has_allocated());
|
2018-09-21 22:34:42 -04:00
|
|
|
}
|