diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-10-11 16:53:51 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-10-11 17:19:52 +0200 |
commit | c731131c8601569028aa732c44b8b55a672b9825 (patch) | |
tree | 62a017d006f8383f9de2b4ed4af52f2031aff5b9 /test | |
parent | 9f1f4ef19e2d15ad453c6c3ac4e00e53bd36eb0d (diff) | |
download | podman-c731131c8601569028aa732c44b8b55a672b9825.tar.gz podman-c731131c8601569028aa732c44b8b55a672b9825.tar.bz2 podman-c731131c8601569028aa732c44b8b55a672b9825.zip |
tests: enable ps --size tests for rootless
rootless podman is using a single user namespace for all the containers
so it can safely access the storage for all of them.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/ps_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/e2e/ps_test.go b/test/e2e/ps_test.go index efcf44f76..2d2913ebf 100644 --- a/test/e2e/ps_test.go +++ b/test/e2e/ps_test.go @@ -80,8 +80,6 @@ var _ = Describe("Podman ps", func() { }) It("podman ps size flag", func() { - SkipIfRootless() - _, ec, _ := podmanTest.RunLsContainer("") Expect(ec).To(Equal(0)) @@ -233,8 +231,6 @@ var _ = Describe("Podman ps", func() { }) It("podman --sort by size", func() { - SkipIfRootless() - session := podmanTest.Podman([]string{"create", "busybox", "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |