mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-17 20:38:06 +00:00
disable sympath unless it's set via target_env (#222)
This commit is contained in:
@ -128,10 +128,13 @@ impl CoverageRecorder {
|
||||
.join("libfuzzer-coverage")
|
||||
.join("DumpCounters.js");
|
||||
|
||||
let should_disable_sympath = !self.config.target_env.contains_key("_NT_SYMBOL_PATH");
|
||||
|
||||
let cdb_cmd = format!(
|
||||
".scriptload {}; !dumpcounters {:?}; q",
|
||||
".scriptload {}; !dumpcounters {:?}, {}; q",
|
||||
script_path.to_string_lossy(),
|
||||
output.to_string_lossy()
|
||||
output.to_string_lossy(),
|
||||
should_disable_sympath,
|
||||
);
|
||||
|
||||
let mut cmd = Command::new("cdb.exe");
|
||||
|
Reference in New Issue
Block a user