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 82d5531 commit 98cc30aCopy full SHA for 98cc30a
src/bin/cargo-honggfuzz.rs
@@ -22,7 +22,7 @@ fn main() {
22
let tsan_options = format!("report_signal_unsafe=0:{}", tsan_options);
23
24
let command = format!("{}/honggfuzz", HONGGFUZZ_TARGET);
25
- Command::new(&command) // exec honggfuzz replacing current process
+ let err = Command::new(&command) // exec honggfuzz replacing current process
26
.args(args)
27
.env("ASAN_OPTIONS", asan_options)
28
.env("TSAN_OPTIONS", tsan_options)
@@ -33,5 +33,6 @@ fn main() {
33
"cannot execute {}, try to execute \"cargo hfuzz build\" from fuzzed project directory",
34
&command,
35
);
36
+ eprintln!("{:?}", err);
37
process::exit(1);
38
}
0 commit comments