(&mut self, _vm: &mut icicle_vm::Vm, _input: &[u8])
| 437 | |
| 438 | impl<T> icicle_fuzzing::Runnable for CortexmTarget<T> { |
| 439 | fn set_input(&mut self, _vm: &mut icicle_vm::Vm, _input: &[u8]) -> anyhow::Result<()> { |
| 440 | anyhow::bail!("input must be set directly"); |
| 441 | } |
| 442 | |
| 443 | fn run(&mut self, vm: &mut icicle_vm::Vm) -> anyhow::Result<VmExit> { |
| 444 | let (icicle_exit, fuzzware_exit) = self.with_uc_ptr(vm, |uc| { |
nothing calls this directly
no outgoing calls
no test coverage detected