summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2022-08-04 05:25:14 -1000
committerSteve Sakoman <steve@sakoman.com>2022-08-10 05:04:10 -1000
commit33d006ed8d93ea4c185d6b28a72b2d252fbb5ae1 (patch)
treeba8b441ac6122ce425f4388c0fdb5332dd617c2c /meta/lib/oeqa/selftest/cases
parent788e2c6bccc58e5a88b33fa91ea3c3ffec7611ca (diff)
downloadopenembedded-core-contrib-33d006ed8d93ea4c185d6b28a72b2d252fbb5ae1.tar.gz
selftest: skip virgl test on fedora 36
This test will fail any time the host has libdrm > 2.4.107 Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 3f78a18603..df11984713 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -187,6 +187,8 @@ class TestImage(OESelftestTestCase):
self.skipTest('virgl isn\'t working with Fedora 34')
if distro and distro == 'fedora-35':
self.skipTest('virgl isn\'t working with Fedora 35')
+ if distro and distro == 'fedora-36':
+ self.skipTest('virgl isn\'t working with Fedora 36')
if distro and distro == 'opensuseleap-15.0':
self.skipTest('virgl isn\'t working with Opensuse 15.0')