summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-27 11:58:59 -0400
committerGitHub <noreply@github.com>2021-09-27 11:58:59 -0400
commitb60cff8cf8fced448c7e78b5b4d72bd7ce949957 (patch)
treec34961ab43b0cf259b32b10f132157f6f6ba0b73 /test
parent899d5d7d7c526c44e3273b31703f518863800aa0 (diff)
parent8fca626e33670d49b4e8f06e09f0a87df3dca1fe (diff)
downloadpodman-b60cff8cf8fced448c7e78b5b4d72bd7ce949957.tar.gz
podman-b60cff8cf8fced448c7e78b5b4d72bd7ce949957.tar.bz2
podman-b60cff8cf8fced448c7e78b5b4d72bd7ce949957.zip
Merge pull request #11754 from flouthoc/podman-stop-report-non-running
stop: Do nothing if container was never created in runtime or in a invalid state.
Diffstat (limited to 'test')
-rw-r--r--test/e2e/stop_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/e2e/stop_test.go b/test/e2e/stop_test.go
index a984bf6d0..7f178d719 100644
--- a/test/e2e/stop_test.go
+++ b/test/e2e/stop_test.go
@@ -234,6 +234,17 @@ var _ = Describe("Podman stop", func() {
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
})
+ It("podman stop should return silent success on stopping configured containers", func() {
+ // following container is not created on OCI runtime
+ // so we return success and assume that is is stopped
+ session2 := podmanTest.Podman([]string{"create", "--name", "stopctr", ALPINE, "/bin/sh"})
+ session2.WaitWithDefaultTimeout()
+ Expect(session2).Should(Exit(0))
+ session3 := podmanTest.Podman([]string{"stop", "stopctr"})
+ session3.WaitWithDefaultTimeout()
+ Expect(session3).Should(Exit(0))
+ })
+
It("podman stop --cidfile", func() {
tmpDir, err := ioutil.TempDir("", "")