in fuzz python process, inherit stderr so we can see python errors

This commit is contained in:
John Turner
2025-11-17 22:46:09 +00:00
parent dc47258841
commit 34362dcb29

View File

@@ -21,6 +21,7 @@ pub unsafe extern "C" fn LLVMFuzzerTestOneInput(input: *const u8, len: usize) ->
let mut proc = Command::new("atom.py") let mut proc = Command::new("atom.py")
.stdin(Stdio::piped()) .stdin(Stdio::piped())
.stdout(Stdio::piped()) .stdout(Stdio::piped())
.stderr(Stdio::inherit())
.spawn() .spawn()
.expect("failed to spawn atom.py"); .expect("failed to spawn atom.py");