add NyxConfig::set_workdir_path

This commit is contained in:
Andrea Jemmett 2022-04-09 08:16:16 +02:00
parent 7788b934db
commit de3fdeae1a

View File

@ -83,6 +83,10 @@ impl NyxConfig {
&self.config.fuzz.workdir_path
}
pub fn set_workdir_path(&mut self, path: String) {
self.config.fuzz.workdir_path = path;
}
pub fn dict(&self) -> Vec<Vec<u8>> {
self.config.fuzz.dict.clone()
}