From 34362dcb293f456109b26193e1748de8502ffcfc Mon Sep 17 00:00:00 2001 From: John Turner Date: Mon, 17 Nov 2025 22:46:09 +0000 Subject: [PATCH] in fuzz python process, inherit stderr so we can see python errors --- fuzz/fuzz.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/fuzz/fuzz.rs b/fuzz/fuzz.rs index 8fadc86..ca87a47 100644 --- a/fuzz/fuzz.rs +++ b/fuzz/fuzz.rs @@ -21,6 +21,7 @@ pub unsafe extern "C" fn LLVMFuzzerTestOneInput(input: *const u8, len: usize) -> let mut proc = Command::new("atom.py") .stdin(Stdio::piped()) .stdout(Stdio::piped()) + .stderr(Stdio::inherit()) .spawn() .expect("failed to spawn atom.py");