(&mut self)
| 101 | } |
| 102 | |
| 103 | pub fn transform(&mut self) -> Result<()> { |
| 104 | self.init()?; |
| 105 | self.programs = self.clone_programs()?; |
| 106 | |
| 107 | if self.use_constraint { |
| 108 | self.exploit_transform() |
| 109 | } else { |
| 110 | self.normal_transform() |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | // Only transform the program to the Libfuzzer kind with the minimal pre-procession. |
| 115 | fn normal_transform(&self) -> Result<()> { |