summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-07-15 14:56:58 +0200
committerValentin Rothberg <rothberg@redhat.com>2021-07-16 10:57:40 +0200
commit9924c57d4c42b596306c21c601d0f970b2735e5e (patch)
treef8f8545d86b1c3511b8607c45075d32932a391cd /test
parentf0cd16cb32676eaf5ee337b50e8628f2f49ccce9 (diff)
downloadpodman-9924c57d4c42b596306c21c601d0f970b2735e5e.tar.gz
podman-9924c57d4c42b596306c21c601d0f970b2735e5e.tar.bz2
podman-9924c57d4c42b596306c21c601d0f970b2735e5e.zip
podman start: remove containers configured for auto removal
Make sure that containers configured for auto removal (e.g., via `podman create --rm`) are removed in `podman start` if starting the container failed. Fixes: #10935 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/start_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go
index 7799055d9..073631ef7 100644
--- a/test/e2e/start_test.go
+++ b/test/e2e/start_test.go
@@ -65,7 +65,6 @@ var _ = Describe("Podman start", func() {
})
It("podman start --rm --attach removed on failure", func() {
- Skip("FIXME: #10935, race condition removing container")
session := podmanTest.Podman([]string{"create", "--rm", ALPINE, "foo"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))