1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

fuzz: with pipe, also capture stderr

This commit is contained in:
Sylvestre Ledru 2024-01-13 14:01:38 +01:00
parent 7b34e3e4bb
commit 19e1f26e3d

View file

@ -232,7 +232,10 @@ pub fn run_gnu_cmd(
let output = if let Some(input_str) = pipe_input {
// We have an pipe input
command.stdin(Stdio::piped()).stdout(Stdio::piped());
command
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.stderr(Stdio::piped());
let mut child = command.spawn().expect("Failed to execute command");
let child_stdin = child.stdin.as_mut().unwrap();