1
0
mirror of https://github.com/moby/moby.git synced 2025-08-01 05:47:11 +03:00

Bump runc

Fixes a race when starting a container when there is an error, the stdio
streams are not always written.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff
2015-10-08 16:58:27 -04:00
parent bea2257f92
commit d9f5f1954c
4 changed files with 4 additions and 4 deletions

View File

@ -613,9 +613,8 @@ func (s *DockerSuite) TestExecOnReadonlyContainer(c *check.C) {
}
// #15750
// TODO Fix this test on windows #16738
func (s *DockerSuite) TestExecStartFails(c *check.C) {
testRequires(c, DaemonIsLinux, SameHostDaemon)
testRequires(c, DaemonIsLinux)
name := "exec-15750"
dockerCmd(c, "run", "-d", "--name", name, "busybox", "top")
c.Assert(waitRun(name), check.IsNil)