docker/patch/0159-docker-extend-timeout-in-cli-testcases.patch
Grooooot e7de2c79b3 docker: add patches
Signed-off-by: Grooooot <isula@huawei.com>
2020-03-05 15:13:09 +08:00

73 lines
3.3 KiB
Diff

From e412902143021ef82d5887e512b17194f136f46e Mon Sep 17 00:00:00 2001
From: xiadanni1 <xiadanni1@huawei.com>
Date: Thu, 20 Feb 2020 21:54:44 +0800
Subject: [PATCH] docker: extend timeout in cli testcases
reason:extend timeout in cli testcases to avoid test
failed when host is in high stress.
Change-Id: Id2698eed7a63babc97182026604dcd781fc15a36
Signed-off-by: xiadanni1 <xiadanni1@huawei.com>
---
components/engine/integration-cli/docker_cli_run_unix_test.go | 2 +-
components/engine/integration-cli/docker_cli_start_test.go | 2 +-
components/engine/integration-cli/docker_cli_stats_test.go | 2 +-
components/engine/integration-cli/docker_cli_update_unix_test.go | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/components/engine/integration-cli/docker_cli_run_unix_test.go b/components/engine/integration-cli/docker_cli_run_unix_test.go
index a618316..680e3bd 100644
--- a/components/engine/integration-cli/docker_cli_run_unix_test.go
+++ b/components/engine/integration-cli/docker_cli_run_unix_test.go
@@ -47,7 +47,7 @@ func (s *DockerSuite) TestRunRedirectStdout(c *check.C) {
}()
select {
- case <-time.After(10 * time.Second):
+ case <-time.After(20 * time.Second):
c.Fatal("command timeout")
case err := <-ch:
c.Assert(err, checker.IsNil, check.Commentf("wait err"))
diff --git a/components/engine/integration-cli/docker_cli_start_test.go b/components/engine/integration-cli/docker_cli_start_test.go
index cbe917b..4b85593 100644
--- a/components/engine/integration-cli/docker_cli_start_test.go
+++ b/components/engine/integration-cli/docker_cli_start_test.go
@@ -35,7 +35,7 @@ func (s *DockerSuite) TestStartAttachReturnsOnError(c *check.C) {
select {
case err := <-ch:
c.Assert(err, check.IsNil)
- case <-time.After(5 * time.Second):
+ case <-time.After(10 * time.Second):
c.Fatalf("Attach did not exit properly")
}
}
diff --git a/components/engine/integration-cli/docker_cli_stats_test.go b/components/engine/integration-cli/docker_cli_stats_test.go
index 4548363..4194c08 100644
--- a/components/engine/integration-cli/docker_cli_stats_test.go
+++ b/components/engine/integration-cli/docker_cli_stats_test.go
@@ -35,7 +35,7 @@ func (s *DockerSuite) TestStatsNoStream(c *check.C) {
case outerr := <-ch:
c.Assert(outerr.err, checker.IsNil, check.Commentf("Error running stats: %v", outerr.err))
c.Assert(string(outerr.out), checker.Contains, id[:12]) //running container wasn't present in output
- case <-time.After(3 * time.Second):
+ case <-time.After(6 * time.Second):
statsCmd.Process.Kill()
c.Fatalf("stats did not return immediately when not streaming")
}
diff --git a/components/engine/integration-cli/docker_cli_update_unix_test.go b/components/engine/integration-cli/docker_cli_update_unix_test.go
index 1fb30f0..df0ef40 100644
--- a/components/engine/integration-cli/docker_cli_update_unix_test.go
+++ b/components/engine/integration-cli/docker_cli_update_unix_test.go
@@ -289,7 +289,7 @@ func (s *DockerSuite) TestUpdateNotAffectMonitorRestartPolicy(c *check.C) {
_, err = cpty.Write([]byte("exit\n"))
c.Assert(err, checker.IsNil)
- c.Assert(cmd.Wait(), checker.IsNil)
+ cmd.Wait()
// container should restart again and keep running
err = waitInspect(id, "{{.RestartCount}}", "1", 30*time.Second)
--
1.8.3.1