()
| 113 | #[test] |
| 114 | #[cfg(linux_kernel)] |
| 115 | fn raw_dir_entries_heap() { |
| 116 | let mut buf = Vec::with_capacity(8192); |
| 117 | test_raw_dir(buf.spare_capacity_mut()); |
| 118 | |
| 119 | let mut buf = [MaybeUninit::new(0); 8192]; |
| 120 | test_raw_dir(&mut buf); |
| 121 | } |
| 122 | |
| 123 | #[test] |
| 124 | #[cfg(linux_kernel)] |
nothing calls this directly
no test coverage detected