fixed example testcase

This commit is contained in:
Dominik Maier 2021-05-26 16:50:10 +02:00
parent ca869cd70a
commit 945693f6ed
2 changed files with 2 additions and 1 deletions

View File

@ -98,7 +98,7 @@ pub fn main() {
// Create the executor for the forkserver // Create the executor for the forkserver
let mut executor = ForkserverExecutor::new( let mut executor = ForkserverExecutor::new(
"../../libafl_tests/src/forkserver_test.o".to_string(), "../../libafl_tests/src/forkserver_test.o".to_string(),
vec![], &[],
tuple_list!(edges_observer, time_observer), tuple_list!(edges_observer, time_observer),
) )
.expect("Failed to create the Executor"); .expect("Failed to create the Executor");

View File

@ -1,4 +1,5 @@
use hashbrown::HashMap; use hashbrown::HashMap;
#[cfg(all(feature = "std", any(target_os = "linux", target_os = "android")))]
use libafl::bolts::os::walk_self_maps; use libafl::bolts::os::walk_self_maps;
use nix::{ use nix::{
libc::memset, libc::memset,