diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-04-05 15:29:04 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-04-08 21:23:43 +0200 |
commit | 6b9c1e28579050a5027adb5189f282fbac0e08c4 (patch) | |
tree | 012b43e92887b3c32b5a03399caa9048f91c8339 /test/e2e/run_ns_test.go | |
parent | c94903ab45396d04f3c94587b8f505435d0ea723 (diff) | |
download | podman-6b9c1e28579050a5027adb5189f282fbac0e08c4.tar.gz podman-6b9c1e28579050a5027adb5189f282fbac0e08c4.tar.bz2 podman-6b9c1e28579050a5027adb5189f282fbac0e08c4.zip |
test: enable userns e2e tests for rootless
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e/run_ns_test.go')
-rw-r--r-- | test/e2e/run_ns_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/e2e/run_ns_test.go b/test/e2e/run_ns_test.go index 5236e6584..51f921bce 100644 --- a/test/e2e/run_ns_test.go +++ b/test/e2e/run_ns_test.go @@ -63,7 +63,6 @@ var _ = Describe("Podman run ns", func() { }) It("podman run ipcns ipcmk host test", func() { - SkipIfRootless() setup := SystemExec("ipcmk", []string{"-M", "1024"}) Expect(setup.ExitCode()).To(Equal(0)) output := strings.Split(setup.OutputToString(), " ") @@ -77,7 +76,6 @@ var _ = Describe("Podman run ns", func() { }) It("podman run ipcns ipcmk container test", func() { - SkipIfRootless() setup := podmanTest.Podman([]string{"run", "-d", "--name", "test1", fedoraMinimal, "sleep", "999"}) setup.WaitWithDefaultTimeout() Expect(setup.ExitCode()).To(Equal(0)) |