()
| 163 | |
| 164 | #[test] |
| 165 | fn test_punch_hole() { |
| 166 | let temp_file = TempFile::new().unwrap(); |
| 167 | let mut file = temp_file.into_file(); |
| 168 | let mut async_io = RawFileSync::new(file.as_raw_fd()); |
| 169 | raw_async_io_tests::test_punch_hole(&mut async_io, &mut file); |
| 170 | } |
| 171 | |
| 172 | #[test] |
| 173 | fn test_write_zeroes() { |