(&self)
| 51 | } |
| 52 | |
| 53 | fn get_infer_program(&self) -> (PathBuf, PathBuf) { |
| 54 | let program = self.src_file.clone(); |
| 55 | let dir = get_file_dirname(&program); |
| 56 | let binary: PathBuf = [dir, "fuzz_infer.out".into()].iter().collect(); |
| 57 | (program, binary) |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | impl Executor { |
no test coverage detected