summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2019-11-22 16:31:04 +0100
committerValentin Rothberg <rothberg@redhat.com>2019-11-22 16:34:01 +0100
commitd76242e5b4d4463508f85b85d28512f9ad720170 (patch)
treeb3e9d6f77837b0e217234696b5950f8378fc058f /test/e2e
parent22e7d7d86f945620bbc1bdd3aa9c4a9d3248fa1f (diff)
downloadpodman-d76242e5b4d4463508f85b85d28512f9ad720170.tar.gz
podman-d76242e5b4d4463508f85b85d28512f9ad720170.tar.bz2
podman-d76242e5b4d4463508f85b85d28512f9ad720170.zip
e2e/prune: run two top containers
In hope to make the prune tests more robust, run two top containers and stop one explicitly to reduce the risk of a race condition. Fixes: #4452 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/prune_test.go11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/e2e/prune_test.go b/test/e2e/prune_test.go
index df0525a79..3a7185b48 100644
--- a/test/e2e/prune_test.go
+++ b/test/e2e/prune_test.go
@@ -43,9 +43,14 @@ var _ = Describe("Podman prune", func() {
top.WaitWithDefaultTimeout()
Expect(top.ExitCode()).To(Equal(0))
- session := podmanTest.Podman([]string{"run", ALPINE, "ls"})
- session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(0))
+ top = podmanTest.RunTopContainer("")
+ top.WaitWithDefaultTimeout()
+ Expect(top.ExitCode()).To(Equal(0))
+ cid := top.OutputToString()
+
+ stop := podmanTest.Podman([]string{"stop", cid})
+ stop.WaitWithDefaultTimeout()
+ Expect(stop.ExitCode()).To(Equal(0))
prune := podmanTest.Podman([]string{"container", "prune"})
prune.WaitWithDefaultTimeout()