diff options
Diffstat (limited to 'test/e2e/pod_kill_test.go')
-rw-r--r-- | test/e2e/pod_kill_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/pod_kill_test.go b/test/e2e/pod_kill_test.go index c1f7503e3..6bf1c5dff 100644 --- a/test/e2e/pod_kill_test.go +++ b/test/e2e/pod_kill_test.go @@ -42,6 +42,7 @@ var _ = Describe("Podman pod kill", func() { }) It("podman pod kill a pod by id", func() { + SkipIfRootless() _, ec, podid := podmanTest.CreatePod("") Expect(ec).To(Equal(0)) @@ -60,6 +61,7 @@ var _ = Describe("Podman pod kill", func() { }) It("podman pod kill a pod by id with TERM", func() { + SkipIfRootless() _, ec, podid := podmanTest.CreatePod("") Expect(ec).To(Equal(0)) @@ -74,6 +76,7 @@ var _ = Describe("Podman pod kill", func() { }) It("podman pod kill a pod by name", func() { + SkipIfRootless() _, ec, podid := podmanTest.CreatePod("test1") Expect(ec).To(Equal(0)) @@ -102,6 +105,7 @@ var _ = Describe("Podman pod kill", func() { }) It("podman pod kill latest pod", func() { + SkipIfRootless() _, ec, podid := podmanTest.CreatePod("") Expect(ec).To(Equal(0)) @@ -127,6 +131,7 @@ var _ = Describe("Podman pod kill", func() { }) It("podman pod kill all", func() { + SkipIfRootless() _, ec, podid := podmanTest.CreatePod("") Expect(ec).To(Equal(0)) |