Browse code

Windows CI: Up timeout TestRunRestartMaxRetries

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2016/02/05 04:59:13
Showing 1 changed files
... ...
@@ -2683,7 +2683,7 @@ func (s *DockerSuite) TestRunRestartMaxRetries(c *check.C) {
2683 2683
 	out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "false")
2684 2684
 	timeout := 10 * time.Second
2685 2685
 	if daemonPlatform == "windows" {
2686
-		timeout = 45 * time.Second
2686
+		timeout = 120 * time.Second
2687 2687
 	}
2688 2688
 
2689 2689
 	id := strings.TrimSpace(string(out))