(&mut self)
| 170 | } |
| 171 | |
| 172 | pub fn preprocess(&mut self) -> Result<()> { |
| 173 | self.handle_file_constraint("data", "size")?; |
| 174 | self.add_fuzzer_size_constraint("size")?; |
| 175 | Ok(()) |
| 176 | } |
| 177 | |
| 178 | // write the raw bytes to the "intput_file"; |
| 179 | fn handle_file_constraint(&mut self, data: &str, size: &str) -> Result<()> { |
no test coverage detected