39c4c2
From d4f06e0e0b9529bfa3d17c1ef73c028752ee1bb7 Mon Sep 17 00:00:00 2001
39c4c2
From: Martin Pitt <martin@piware.de>
39c4c2
Date: Thu, 4 Mar 2021 20:11:47 +0100
39c4c2
Subject: [PATCH] test: Generalize cgroupsV2() for all rhel-8-* versions
39c4c2
39c4c2
It looks like RHEL newer 8.y versions won't get cgroupsv2 either, so
39c4c2
generalize the check.
39c4c2
---
39c4c2
 test/check-application | 2 +-
39c4c2
 1 file changed, 1 insertion(+), 1 deletion(-)
39c4c2
39c4c2
diff --git a/test/check-application b/test/check-application
39c4c2
index 0b163ce7..a40f2d90 100755
39c4c2
--- a/test/check-application
39c4c2
+++ b/test/check-application
39c4c2
@@ -80,7 +80,7 @@ class TestApplication(testlib.MachineCase):
39c4c2
         self.has_selinux = self.machine.image not in ["debian-testing", "ubuntu-stable"]
39c4c2
 
39c4c2
     def cgroupsV2(self):
39c4c2
-        return self.machine.image not in ["ubuntu-stable", "rhel-8-4"]
39c4c2
+        return self.machine.image != 'ubuntu-stable' and not self.machine.image.startswith('rhel-8')
39c4c2
 
39c4c2
     def execute(self, system, cmd):
39c4c2
         if system: