diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-11-17 22:46:09 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-11-17 22:46:09 +0000 |
| commit | 34362dcb293f456109b26193e1748de8502ffcfc (patch) | |
| tree | af90dc69aabe68aad6ef473c5bbedeb84e6f8173 | |
| parent | dc4725884107fe3c6f0853f2aebae5652e7d8fe2 (diff) | |
| download | gentoo-utils-34362dcb293f456109b26193e1748de8502ffcfc.tar.gz | |
in fuzz python process, inherit stderr so we can see python errors
| -rw-r--r-- | fuzz/fuzz.rs | 1 |
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"); |
