()
| 171 | |
| 172 | #[test] |
| 173 | fn test_write_zeroes() { |
| 174 | let temp_file = TempFile::new().unwrap(); |
| 175 | let mut file = temp_file.into_file(); |
| 176 | let mut async_io = RawFileSync::new(file.as_raw_fd()); |
| 177 | raw_async_io_tests::test_write_zeroes(&mut async_io, &mut file); |
| 178 | } |
| 179 | |
| 180 | #[test] |
| 181 | fn test_punch_hole_multiple_operations() { |