tests/int: show stderr if command failed part II

This adds a few cases missed by commit bf4fcc30.

Fixes: bf4fcc30
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2026-04-18 15:42:24 -07:00
parent 4ccedcbfe8
commit 905958ea65
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -784,6 +784,7 @@ func TestPassExtraFiles(t *testing.T) {
ExtraFiles: []*os.File{pipein1, pipein2},
Stdin: nil,
Stdout: &stdout,
Stderr: new(strings.Builder),
Init: true,
}
err = container.Run(&process)
+1
View File
@@ -421,6 +421,7 @@ func TestExecinPassExtraFiles(t *testing.T) {
ExtraFiles: []*os.File{pipein1, pipein2},
Stdin: nil,
Stdout: &stdout,
Stderr: new(strings.Builder),
}
err = container.Run(inprocess)
ok(t, err)