summaryrefslogtreecommitdiff
path: root/test/system/helpers.bash
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-15 06:19:07 -0400
committerGitHub <noreply@github.com>2020-10-15 06:19:07 -0400
commitef7f584acf65692a6b2a11a352a8d09d8a604ff6 (patch)
tree85044a2360ddbb7a7845de11ec1016bf6996baab /test/system/helpers.bash
parent41eda417fe4565cab26d704daedca0d285327f31 (diff)
parent1646da834c06d55e7bf56b272f2666659117e6fa (diff)
downloadpodman-ef7f584acf65692a6b2a11a352a8d09d8a604ff6.tar.gz
podman-ef7f584acf65692a6b2a11a352a8d09d8a604ff6.tar.bz2
podman-ef7f584acf65692a6b2a11a352a8d09d8a604ff6.zip
Merge pull request #8025 from edsantiago/bats
System test additions
Diffstat (limited to 'test/system/helpers.bash')
-rw-r--r--test/system/helpers.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/helpers.bash b/test/system/helpers.bash
index c6c2c12df..4591c9015 100644
--- a/test/system/helpers.bash
+++ b/test/system/helpers.bash
@@ -247,7 +247,7 @@ function is_cgroupsv1() {
function is_cgroupsv2() {
cgroup_type=$(stat -f -c %T /sys/fs/cgroup)
- test "$cgroup_type" = "cgroupfs"
+ test "$cgroup_type" = "cgroup2fs"
}
###########################