summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@redhat.com>2022-08-24 15:38:14 +0200
committerMatthew Heon <mheon@redhat.com>2022-09-06 14:24:10 -0400
commitb103f057944a272fe67922c1a6c6ebe0d4ea5c07 (patch)
treecf9a9f77bdf1b1d1b86dc299d2d2ea0c3a1a4462 /test
parent455a363bf1eb4040e95105cb22872c7fc529e08f (diff)
downloadpodman-b103f057944a272fe67922c1a6c6ebe0d4ea5c07.tar.gz
podman-b103f057944a272fe67922c1a6c6ebe0d4ea5c07.tar.bz2
podman-b103f057944a272fe67922c1a6c6ebe0d4ea5c07.zip
vendor containers/psgo@v1.7.3
Add three new capabilities that would otherwise be reported as unknown. Also add an e2e test making sure that `podman top` knows all capabilities of the current kernel. I refrained from adding a system test since this may blow up in gating tests. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com> <MH: Fixed cherry-pick conflicts> Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/top_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/e2e/top_test.go b/test/e2e/top_test.go
index 66bb887dc..5f51742d1 100644
--- a/test/e2e/top_test.go
+++ b/test/e2e/top_test.go
@@ -133,4 +133,15 @@ var _ = Describe("Podman top", func() {
Expect(result).Should(Exit(125))
})
+ It("podman top on privileged container", func() {
+ session := podmanTest.Podman([]string{"run", "--privileged", "-d", ALPINE, "top"})
+ session.WaitWithDefaultTimeout()
+ Expect(session).Should(Exit(0))
+ cid := session.OutputToString()
+
+ result := podmanTest.Podman([]string{"top", cid, "capeff"})
+ result.WaitWithDefaultTimeout()
+ Expect(result).Should(Exit(0))
+ Expect(result.OutputToStringArray()).To(Equal([]string{"EFFECTIVE CAPS", "full"}))
+ })
})