diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-03-19 09:55:21 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-03-19 15:01:53 +0100 |
commit | b581fa1510f00864386859dd30f5392c6a521c0c (patch) | |
tree | 6fa3cd6c3279485dfbf6aebd2e542e440296d74b /test/e2e/pod_infra_container_test.go | |
parent | ab576e8577b6cc95aebf4afb84d104cb74ea8717 (diff) | |
download | podman-b581fa1510f00864386859dd30f5392c6a521c0c.tar.gz podman-b581fa1510f00864386859dd30f5392c6a521c0c.tar.bz2 podman-b581fa1510f00864386859dd30f5392c6a521c0c.zip |
tests: re-enable some tests for rootless mode
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e/pod_infra_container_test.go')
-rw-r--r-- | test/e2e/pod_infra_container_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/e2e/pod_infra_container_test.go b/test/e2e/pod_infra_container_test.go index 3b9543566..82f35999c 100644 --- a/test/e2e/pod_infra_container_test.go +++ b/test/e2e/pod_infra_container_test.go @@ -227,7 +227,6 @@ var _ = Describe("Podman pod create", func() { }) It("podman pod container can override pod pid NS", func() { - SkipIfRootless() session := podmanTest.Podman([]string{"pod", "create", "--share", "pid"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -253,7 +252,6 @@ var _ = Describe("Podman pod create", func() { }) It("podman pod container can override pod not sharing pid", func() { - SkipIfRootless() session := podmanTest.Podman([]string{"pod", "create", "--share", "net"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -279,7 +277,6 @@ var _ = Describe("Podman pod create", func() { }) It("podman pod container can override pod ipc NS", func() { - SkipIfRootless() session := podmanTest.Podman([]string{"pod", "create", "--share", "ipc"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |