fix: output directory name; monitor output with println! (#1192)

This commit is contained in:
Felipe Baltor 2023-04-05 06:00:21 -03:00 committed by GitHub
parent 0d446bab20
commit 6523341c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ pub fn main() {
env::current_dir().unwrap().to_string_lossy().to_string() env::current_dir().unwrap().to_string_lossy().to_string()
); );
fuzz( fuzz(
&[PathBuf::from("./input")], &[PathBuf::from("./corpus")],
PathBuf::from("./output"), PathBuf::from("./output"),
&Cores::all().unwrap(), &Cores::all().unwrap(),
1337, 1337,

View File

@ -137,7 +137,7 @@ where
let shmem_provider = StdShMemProvider::new().expect("Failed to init shared memory"); let shmem_provider = StdShMemProvider::new().expect("Failed to init shared memory");
let monitor = MultiMonitor::new(|s| log::info!("{s}")); let monitor = MultiMonitor::new(|s| println!("{s}"));
let mut run_client = |state: Option<_>, let mut run_client = |state: Option<_>,
mut mgr: LlmpRestartingEventManager<_, _>, mut mgr: LlmpRestartingEventManager<_, _>,