diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-07-15 14:56:58 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-07-16 10:57:40 +0200 |
commit | 9924c57d4c42b596306c21c601d0f970b2735e5e (patch) | |
tree | f8f8545d86b1c3511b8607c45075d32932a391cd /test/e2e/start_test.go | |
parent | f0cd16cb32676eaf5ee337b50e8628f2f49ccce9 (diff) | |
download | podman-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/e2e/start_test.go')
-rw-r--r-- | test/e2e/start_test.go | 1 |
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)) |