summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-17 22:46:09 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-17 22:46:09 +0000
commit34362dcb293f456109b26193e1748de8502ffcfc (patch)
treeaf90dc69aabe68aad6ef473c5bbedeb84e6f8173
parentdc4725884107fe3c6f0853f2aebae5652e7d8fe2 (diff)
downloadgentoo-utils-34362dcb293f456109b26193e1748de8502ffcfc.tar.gz
in fuzz python process, inherit stderr so we can see python errors
-rw-r--r--fuzz/fuzz.rs1
1 files changed, 1 insertions, 0 deletions
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");