diff --git a/allocator/src/lib.rs b/allocator/src/lib.rs index 1b6547151..a71a5164d 100644 --- a/allocator/src/lib.rs +++ b/allocator/src/lib.rs @@ -299,15 +299,15 @@ mod tests { drop(_receiver); } - // Don't execute this in CI. It crashes the test process which counts as "not passed". - #[test] - #[ignore] - #[should_panic] - fn abort_on_allocate() { - let _receiver = init(); - assert_no_alloc(|| { - let mut bla: Vec = vec![]; - bla.push(2); - }); - } + // // Don't execute this in CI. It crashes the test process which counts as "not passed". + // #[test] + // #[ignore] + // #[should_panic] + // fn abort_on_allocate() { + // let _receiver = init(); + // assert_no_alloc(|| { + // let mut bla: Vec = vec![]; + // bla.push(2); + // }); + // } }