mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
TestExecStopNotHanging: log output as string
When cmd failed, log its ouput as string instead of byte array to prevent test log like: [49 53 ....] exit status 1 Signed-off-by: Daniel, Dao Quang Minh <dqminh89@gmail.com>
This commit is contained in:
parent
00b8fec75f
commit
d898372568
1 changed files with 2 additions and 1 deletions
|
@ -321,7 +321,8 @@ func (s *DockerSuite) TestExecParseError(c *check.C) {
|
|||
}
|
||||
|
||||
func (s *DockerSuite) TestExecStopNotHanging(c *check.C) {
|
||||
if out, err := exec.Command(dockerBinary, "run", "-d", "--name", "testing", "busybox", "top").CombinedOutput(); err != nil {
|
||||
runCmd := exec.Command(dockerBinary, "run", "-d", "--name", "testing", "busybox", "top")
|
||||
if out, _, err := runCommandWithOutput(runCmd); err != nil {
|
||||
c.Fatal(out, err)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue