Runs the VM until it exits and updates the current fuzzing state.
(&mut self)
| 655 | |
| 656 | /// Runs the VM until it exits and updates the current fuzzing state. |
| 657 | pub fn execute(&mut self) -> Option<VmExit> { |
| 658 | self.execute_with_limit(self.config.icount_limit) |
| 659 | } |
| 660 | |
| 661 | /// Runs the VM until it exits or executs `limit` number of instructions and update the current |
| 662 | /// fuzzing state. |
no test coverage detected