56
56
func testCommandOutputOrder (t * testing.T , withPtty bool , fullOutput []string , stdout []string , stderr []string ) {
57
57
t .Helper ()
58
58
59
- testCommandOutput (t , noop [* options .TerragruntOptions ], assertOutputs (t , fullOutput , stdout , stderr ), withPtty )
59
+ testCommandOutput (t , noop [* options .TerragruntOptions ], assertOutputs (t , fullOutput , stdout , stderr ), withPtty , withPtty )
60
60
}
61
61
62
62
func TestCommandOutputPrefix (t * testing.T ) {
@@ -78,10 +78,10 @@ func TestCommandOutputPrefix(t *testing.T) {
78
78
prefixedOutput ,
79
79
Stdout ,
80
80
Stderr ,
81
- ), true )
81
+ ), true , true )
82
82
}
83
83
84
- func testCommandOutput (t * testing.T , withOptions func (* options.TerragruntOptions ), assertResults func (string , * util.CmdOutput ), allocateStdout bool ) {
84
+ func testCommandOutput (t * testing.T , withOptions func (* options.TerragruntOptions ), assertResults func (string , * util.CmdOutput ), allocateStdout bool , allocateStderr bool ) {
85
85
t .Helper ()
86
86
87
87
terragruntOptions , err := options .NewTerragruntOptionsForTest ("" )
@@ -97,7 +97,7 @@ func testCommandOutput(t *testing.T, withOptions func(*options.TerragruntOptions
97
97
98
98
withOptions (terragruntOptions )
99
99
100
- out , err := shell .RunShellCommandWithOutput (context .Background (), terragruntOptions , "" , ! allocateStdout , false , "testdata/test_outputs.sh" , "same" )
100
+ out , err := shell .RunShellCommandWithOutput (context .Background (), terragruntOptions , "" , ! allocateStdout , ! allocateStderr , false , "testdata/test_outputs.sh" , "same" )
101
101
102
102
assert .NotNil (t , out , "Should get output" )
103
103
require .NoError (t , err , "Should have no error" )
0 commit comments