aboutsummaryrefslogtreecommitdiff
path: root/test/apiv2
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2021-08-02 15:18:54 -0700
committerJhon Honce <jhonce@redhat.com>2021-08-03 15:31:59 -0700
commit9cc974c9637554620248941642d58ff34df90ba0 (patch)
treec3d57474ed38e517de763d694f39913767a27e4b /test/apiv2
parentcbad5616961520831b1f169f03da2a9f81203f71 (diff)
downloadpodman-9cc974c9637554620248941642d58ff34df90ba0.tar.gz
podman-9cc974c9637554620248941642d58ff34df90ba0.tar.bz2
podman-9cc974c9637554620248941642d58ff34df90ba0.zip
Only support containers stats using cgroups v2
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1988252 Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'test/apiv2')
-rw-r--r--test/apiv2/20-containers.at10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at
index c5b2f5ec1..610d3e36d 100644
--- a/test/apiv2/20-containers.at
+++ b/test/apiv2/20-containers.at
@@ -65,6 +65,16 @@ t GET libpod/containers/json?last=1 200 \
cid=$(jq -r '.[0].Id' <<<"$output")
+if root; then
+ t GET libpod/containers/stats?containers='[$cid]' 200
+else
+ if have_cgroupsv2; then
+ t GET libpod/containers/stats?containers='[$cid]' 200
+ else
+ t GET libpod/containers/stats?containers='[$cid]' 409
+ fi
+fi
+
t DELETE libpod/containers/$cid 204
# Issue #6799: it should be possible to start a container, even w/o args.