Fix flaky test TestRunExitOnStdinClose

This test was flaky on ppc64le, where the average time to close was
around 1 second. This bumps that timeout to 60 seconds which should be
plently.

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
Upstream-commit: f84cabd3b8a737e7539d71773b842daa8f0dc66b
Component: engine
This commit is contained in:
Christopher Jones
2016-04-15 09:33:51 -04:00
parent bb8db185ff
commit d95baeb192
@@ -1743,10 +1743,9 @@ func (s *DockerSuite) TestRunExitOnStdinClose(c *check.C) {
name := "testrunexitonstdinclose"
meow := "/bin/cat"
delay := 1
delay := 60
if daemonPlatform == "windows" {
meow = "cat"
delay = 60
}
runCmd := exec.Command(dockerBinary, "run", "--name", name, "-i", "busybox", meow)