1
0
mirror of https://github.com/bspeice/qadapt synced 2025-08-27 09:46:47 -04:00

Renaming and a new macro

This commit is contained in:
2018-12-06 23:02:44 -05:00
parent a1ee8934b4
commit 65673e1af2
8 changed files with 164 additions and 63 deletions

26
tests/assert_macro.rs Normal file
View File

@ -0,0 +1,26 @@
use qadapt::assert_no_alloc;
use qadapt::QADAPT;
#[global_allocator]
static Q: QADAPT = QADAPT;
#[test]
fn math() {
let x = assert_no_alloc!(2 + 2);
assert_eq!(x, 4);
}
fn early_return() -> usize {
assert_no_alloc!(return 8)
}
fn into_box() -> Box<usize> {
Box::new(early_return())
}
#[test]
#[should_panic]
fn early_return_boxing() {
into_box();
}

View File

@ -1,12 +1,12 @@
use std::io;
use qadapt::allocate_panic;
use qadapt::no_alloc;
use qadapt::QADAPT;
#[global_allocator]
static Q: QADAPT = QADAPT;
#[allocate_panic]
#[no_alloc]
fn no_allocate() {
let _v: Vec<()> = Vec::with_capacity(0);
}
@ -16,7 +16,7 @@ fn macro_no_allocate() {
no_allocate();
}
#[allocate_panic]
#[no_alloc]
fn allocates() {
assert_eq!(::qadapt::protection_level(), 1);
// Without boxing, release profile can actually optimize out the allocation
@ -30,7 +30,7 @@ fn macro_allocates() {
allocates();
}
#[allocate_panic]
#[no_alloc]
fn no_allocate_ret() -> bool {
return true;
}
@ -40,7 +40,7 @@ fn macro_return() {
assert!(no_allocate_ret());
}
#[allocate_panic]
#[no_alloc]
fn no_allocate_implicit_ret() -> bool {
true
}
@ -50,7 +50,7 @@ fn macro_implicit_return() {
assert!(no_allocate_implicit_ret());
}
#[allocate_panic]
#[no_alloc]
fn no_allocate_arg(b: bool) -> bool {
b
}
@ -61,7 +61,7 @@ fn macro_allocate_arg() {
no_allocate_arg(false);
}
#[allocate_panic]
#[no_alloc]
fn no_allocate_args(_b: bool, _u: usize, i: i64) -> i64 {
i
}
@ -72,7 +72,7 @@ fn macro_allocate_args() {
no_allocate_args(false, 4, -90);
}
#[allocate_panic]
#[no_alloc]
fn return_result(r: Result<usize, io::Error>) -> Result<Result<usize, io::Error>, ()> {
Ok(r)
}
@ -82,7 +82,7 @@ fn macro_return_result() {
return_result(Ok(16)).unwrap().unwrap();
}
#[allocate_panic]
#[no_alloc]
fn branching_return(a: bool, b: bool, c: bool) -> u8 {
if a {
if b {
@ -131,7 +131,7 @@ fn run_closure(x: impl Fn(bool, bool) -> bool) -> bool {
x(true, false)
}
#[allocate_panic]
#[no_alloc]
fn example_closure() {
let c = run_closure(|a: bool, b| return a && b);
assert!(!c);
@ -145,7 +145,7 @@ fn macro_closure() {
}
#[test]
#[allocate_panic]
#[no_alloc]
fn macro_release_safe() {
#[cfg(debug_assertions)]
{

7
tests/unused_panic.rs Normal file
View File

@ -0,0 +1,7 @@
use qadapt::enter_protected;
#[test]
#[should_panic]
fn guard_without_initialization() {
enter_protected();
}