diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-01-18 17:12:23 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-01-18 17:12:28 +0100 |
commit | 8156f8c69473f8a7f970ca4f1b4a5f01a99d368a (patch) | |
tree | 80d656d4d77330e58604377480f6cc00ccb2217f /test/e2e | |
parent | a2ab36d0d115718b5d08ccca9ff567de1d3db20a (diff) | |
download | podman-8156f8c69473f8a7f970ca4f1b4a5f01a99d368a.tar.gz podman-8156f8c69473f8a7f970ca4f1b4a5f01a99d368a.tar.bz2 podman-8156f8c69473f8a7f970ca4f1b4a5f01a99d368a.zip |
rootless: fix --pid=host without --privileged
When using --pid=host don't try to cover /proc paths, as they are
coming from the /proc bind mounted from the host.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/rootless_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/e2e/rootless_test.go b/test/e2e/rootless_test.go index daf8b8c32..2b84d34c9 100644 --- a/test/e2e/rootless_test.go +++ b/test/e2e/rootless_test.go @@ -276,6 +276,10 @@ var _ = Describe("Podman rootless", func() { runRootlessHelper([]string{"--net", "host"}) }) + It("podman rootless rootfs --pid host", func() { + runRootlessHelper([]string{"--pid", "host"}) + }) + It("podman rootless rootfs --privileged", func() { runRootlessHelper([]string{"--privileged"}) }) |