Merge pull request #22050 from tophj-ibm/increase-timeout-stdin-close-test

Fix flaky test TestRunExitOnStdinClose
Upstream-commit: d2851cc7e313aa3a56591b69ccc952bbfab0d0f7
Component: engine
This commit is contained in:
Alexander Morozov
2016-04-15 10:46:31 -07:00

View File

@ -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)