summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2022-10-18 08:52:29 -1000
committerSteve Sakoman <steve@sakoman.com>2022-10-21 06:28:52 -1000
commit54bbfe94ae4514386c572564bf221edfdbb2ce38 (patch)
treedf0d537881a1ee798529a42c4295ba47b32628f5
parent9275d23c782071382c201bca2d647f6426a64e2f (diff)
downloadopenembedded-core-contrib-54bbfe94ae4514386c572564bf221edfdbb2ce38.tar.gz
selftest: skip virgl test on all Alma Linux
This test will fail any time the host has libdrm > 2.4.107 Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 399727de49..aeda01848a 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -175,8 +175,8 @@ class TestImage(OESelftestTestCase):
if "DISPLAY" not in os.environ:
self.skipTest("virgl gtk test must be run inside a X session")
distro = oe.lsb.distro_identifier()
- if distro and distro == 'almalinux-8.6':
- self.skipTest('virgl isn\'t working with Alma 8')
+ if distro and distro.startswith('almalinux'):
+ self.skipTest('virgl isn\'t working with Alma Linux')
if distro and distro == 'debian-8':
self.skipTest('virgl isn\'t working with Debian 8')
if distro and distro == 'centos-7':