We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631357b commit 82d5531Copy full SHA for 82d5531
src/bin/cargo-hfuzz.rs
@@ -170,7 +170,7 @@ where
170
});
171
172
let command = format!("{}/honggfuzz", &honggfuzz_target);
173
- Command::new(&command) // exec honggfuzz replacing current process
+ let err = Command::new(&command) // exec honggfuzz replacing current process
174
.args(&[
175
"-W",
176
&format!("{}/{}", &honggfuzz_workspace, target),
@@ -196,6 +196,7 @@ where
196
197
// code flow will only reach here if honggfuzz failed to execute
198
eprintln!("cannot execute {}, try to execute \"cargo hfuzz build\" from fuzzed project directory", &command);
199
+ eprintln!("{:?}", err);
200
process::exit(1);
201
}
202
0 commit comments