diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2022-09-14 23:18:54 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2022-09-15 00:51:56 +0200 |
commit | cf2118eab3b736feb8018bcc9f4cdb548b7ab70a (patch) | |
tree | 460fbe6218c6d39e1cf39e1b323b4d685a4509ae /test | |
parent | a73b150e70804907bb2c10390da766a0c6bc7485 (diff) | |
download | podman-cf2118eab3b736feb8018bcc9f4cdb548b7ab70a.tar.gz podman-cf2118eab3b736feb8018bcc9f4cdb548b7ab70a.tar.bz2 podman-cf2118eab3b736feb8018bcc9f4cdb548b7ab70a.zip |
stats: map MaxUsage to the correct value
and make sure it is not set for cgroup v2
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/20-containers.at | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index 9ace46b8b..e581b10d1 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -98,6 +98,12 @@ else fi fi +# max_usage is not set for cgroupv2 +if have_cgroupsv2; then + t GET libpod/containers/stats?containers='[$cid]' 200 \ + .memory_stats.max_usage=null +fi + t DELETE libpod/containers/$cid 200 .[0].Id=$cid # Issue #14676: make sure the stats show the memory limit specified for the container |