diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-09 01:36:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 01:36:53 -0700 |
commit | d744d9e3038aea2cf77ca83326be2f141da3b610 (patch) | |
tree | a407b434cdd1cc67a66f2983fbadbfe3e6dfcacd /test/e2e/run_ns_test.go | |
parent | 0fdbf1d306a806520257e100bb9f306e516fd8f0 (diff) | |
parent | ce82e19a372571f296e8463727809ee76c725911 (diff) | |
download | podman-d744d9e3038aea2cf77ca83326be2f141da3b610.tar.gz podman-d744d9e3038aea2cf77ca83326be2f141da3b610.tar.bz2 podman-d744d9e3038aea2cf77ca83326be2f141da3b610.zip |
Merge pull request #2859 from giuseppe/enable-userns-tests-rootless
test: enable userns and remote e2e tests for rootless
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)) |