summaryrefslogtreecommitdiff
path: root/test/e2e/ps_test.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-10-11 16:53:51 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-10-11 17:19:52 +0200
commitc731131c8601569028aa732c44b8b55a672b9825 (patch)
tree62a017d006f8383f9de2b4ed4af52f2031aff5b9 /test/e2e/ps_test.go
parent9f1f4ef19e2d15ad453c6c3ac4e00e53bd36eb0d (diff)
downloadpodman-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/e2e/ps_test.go')
-rw-r--r--test/e2e/ps_test.go4
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))