()
| 130 | #[test] |
| 131 | #[cfg(linux_kernel)] |
| 132 | fn raw_dir_entries_unaligned() { |
| 133 | let mut buf = [MaybeUninit::uninit(); 2048]; |
| 134 | let buf = &mut buf[1..]; |
| 135 | |
| 136 | assert!(!(buf.as_ptr() as usize).is_power_of_two()); |
| 137 | |
| 138 | test_raw_dir(buf); |
| 139 | } |
| 140 | |
| 141 | #[test] |
| 142 | fn dir_from_openat() { |
nothing calls this directly
no test coverage detected