summaryrefslogtreecommitdiff
path: root/test/e2e/run_restart_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-15 11:03:30 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-15 17:45:11 +0000
commit8d7dc94a2773cc3ad9a36f3318f987ccee097666 (patch)
tree7cbf5081e03b4e92da5ad22ca4cce73737181a0a /test/e2e/run_restart_test.go
parent1856703e38e67ad5ab5e634757fe5fe0ccd34d8e (diff)
downloadpodman-8d7dc94a2773cc3ad9a36f3318f987ccee097666.tar.gz
podman-8d7dc94a2773cc3ad9a36f3318f987ccee097666.tar.bz2
podman-8d7dc94a2773cc3ad9a36f3318f987ccee097666.zip
Add extra E2E test for restarting containers
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #482 Approved by: baude
Diffstat (limited to 'test/e2e/run_restart_test.go')
-rw-r--r--test/e2e/run_restart_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/e2e/run_restart_test.go b/test/e2e/run_restart_test.go
index 8737cf4f8..c55dfa1d3 100644
--- a/test/e2e/run_restart_test.go
+++ b/test/e2e/run_restart_test.go
@@ -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))
+ })
})