From 49b3647410474cfc2d5010c6c329e6673fc02fe4 Mon Sep 17 00:00:00 2001 From: baude Date: Sun, 29 Jul 2018 15:50:16 -0500 Subject: Speed up test results Stop all containers with a zero timeout prior to trying to rm -fa. This results in quicker teardown times by not waiting for timeouts. Also, with wait tests, no need to wait the full 10 second sleep. 1 will do. Signed-off-by: baude Closes: #1181 Approved by: rhatdan --- test/e2e/wait_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/e2e/wait_test.go') diff --git a/test/e2e/wait_test.go b/test/e2e/wait_test.go index 08eb30658..8e7035204 100644 --- a/test/e2e/wait_test.go +++ b/test/e2e/wait_test.go @@ -48,7 +48,7 @@ var _ = Describe("Podman wait", func() { }) It("podman wait on a sleeping container", func() { - session := podmanTest.Podman([]string{"run", "-d", ALPINE, "sleep", "10"}) + session := podmanTest.Podman([]string{"run", "-d", ALPINE, "sleep", "1"}) session.Wait(20) cid := session.OutputToString() Expect(session.ExitCode()).To(Equal(0)) @@ -57,7 +57,7 @@ var _ = Describe("Podman wait", func() { }) It("podman wait on latest container", func() { - session := podmanTest.Podman([]string{"run", "-d", ALPINE, "sleep", "10"}) + session := podmanTest.Podman([]string{"run", "-d", ALPINE, "sleep", "1"}) session.Wait(20) Expect(session.ExitCode()).To(Equal(0)) session = podmanTest.Podman([]string{"wait", "-l"}) -- cgit v1.2.3-54-g00ecf