1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
use alloc_counter::*; #[global_allocator] static A: AllocCounterSystem = AllocCounterSystem; #[test] fn allow() { Box::new(0); } #[test] #[should_panic] fn deny() { deny_alloc(|| Box::new(0)); } #[test] #[should_panic] fn forbid() { forbid_alloc(|| Box::new(0)); } #[test] fn deny_then_allow() { deny_alloc(|| allow_alloc(|| Box::new(0))); } #[test] fn forbid_then_allow() { forbid_alloc(|| allow_alloc(|| 0)); } #[test] #[should_panic] fn forbid_sticks() { forbid_alloc(|| allow_alloc(|| Box::new(0))); }