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.
2 parents d41f445 + 55aa7e5 commit a04fd02Copy full SHA for a04fd02
src/agent/onefuzz/src/libfuzzer.rs
@@ -278,8 +278,10 @@ impl LibFuzzer {
278
279
if !result.status.success() {
280
bail!(
281
- "libFuzzer failed when parsing an initial seed {:?}: stdout:{:?} stderr:{:?}",
+ "libFuzzer failed when parsing an initial seed {:?}: cmd:{:?} exit_code: {:?} stdout:{:?} stderr:{:?}",
282
input.file_name().unwrap_or_else(|| input.as_ref()),
283
+ cmd,
284
+ result.status,
285
String::from_utf8_lossy(&result.stdout),
286
String::from_utf8_lossy(&result.stderr),
287
);
0 commit comments