mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00
Add extra E2E test for restarting containers
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #482 Approved by: baude
This commit is contained in:
@ -36,4 +36,18 @@ var _ = Describe("Podman run restart containers", func() {
|
||||
session2.WaitWithDefaultTimeout()
|
||||
Expect(session2.ExitCode()).To(Equal(0))
|
||||
})
|
||||
|
||||
It("Podman start after signal kill", func() {
|
||||
session := podmanTest.RunTopContainer("test1")
|
||||
ok := WaitForContainer(&podmanTest)
|
||||
Expect(ok).To(BeTrue())
|
||||
|
||||
killSession := podmanTest.Podman([]string{"kill", "-s", "9", "test1"})
|
||||
killSession.WaitWithDefaultTimeout()
|
||||
Expect(killSession.ExitCode()).To(Equal(0))
|
||||
|
||||
session2 := podmanTest.Podman([]string{"start", "--attach", "test1"})
|
||||
session2.WaitWithDefaultTimeout()
|
||||
Expect(session2.ExitCode()).To(Equal(0))
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user