Add post_run_target for ShadowExecutor (#1641)

This commit is contained in:
Dongjia "toka" Zhang 2023-10-30 19:27:55 +01:00 committed by GitHub
parent 976d6b2e97
commit 745326ee26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,7 +70,9 @@ where
mgr: &mut EM, mgr: &mut EM,
input: &Self::Input, input: &Self::Input,
) -> Result<ExitKind, Error> { ) -> Result<ExitKind, Error> {
self.executor.run_target(fuzzer, state, mgr, input) let ret = self.executor.run_target(fuzzer, state, mgr, input);
self.executor.post_run_reset();
ret
} }
} }