1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #19602 from Microsoft/jjh/testrunexitonstdinclose

Windows CI: Fix TestRunExitOnStdinClose flakiness
This commit is contained in:
Sebastiaan van Stijn 2016-01-23 18:53:28 -08:00
commit 717ced8dd7

View file

@ -1717,7 +1717,7 @@ func (s *DockerSuite) TestRunExitOnStdinClose(c *check.C) {
delay := 1
if daemonPlatform == "windows" {
meow = "cat"
delay = 5
delay = 60
}
runCmd := exec.Command(dockerBinary, "run", "--name", name, "-i", "busybox", meow)